gpt4 book ai didi

java - Spring MVC xml配置

转载 作者:行者123 更新时间:2023-11-29 07:40:47 27 4
gpt4 key购买 nike

我正在尝试在 xml 中配置 Spring MVC,因为我不想(还)使用配置类。

我认为缺少了一些东西,因为如果删除以下配置类,我将无法工作:

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;

@Configuration
@EnableWebMvc
public class Config {

}

这是我的 webmv-servlet.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">


<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="es.webtools.eencuesta.api.config.HibernateAwareObjectMapper" />
</property>
</bean>
<bean class="org.springframework.http.converter.StringHttpMessageConverter" />
</mvc:message-converters>
</mvc:annotation-driven>

<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="10000000" />
</bean>


<bean id="templateResolver" class="org.thymeleaf.templateresolver.ServletContextTemplateResolver">
<property name="prefix" value="/WEB-INF/thymeleaf/" />
<property name="suffix" value=".html" />
<property name="templateMode" value="HTML5" />
<property name="cacheable" value="false" />
</bean>

<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
<property name="templateResolver" ref="templateResolver" />
</bean>

<bean id="viewResolver" class="org.thymeleaf.spring3.view.ThymeleafViewResolver">
<property name="templateEngine" ref="templateEngine" />
<property name="viewNames" value="**" />
</bean>

  • 组件扫描在 applicationContext.xml 文件中:

版本: Spring :3.2.0.RELEASE Spring MVC:3.2.0.RELEASE thymeleaf :2.1.4

有谁知道我缺少什么 xml 条目?

最佳答案

我不是专家,但你可以尝试告诉 Spring MVC servlet 配置文件在哪里。在 web.xml 的 servlet 配置中添加一个初始化参数:

  <servlet>
<servlet-name>DispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/webmv-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

关于java - Spring MVC xml配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30454300/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com