Spring xml config混合java配置

时间:2017-09-15 17:12:17

标签: java spring spring-mvc

我创建了一个基本的Spring MVC应用程序,当我像这样配置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:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"

       xsi:schemaLocation="http://www.springframework.org/schema/beans 
                            http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
                            http://www.springframework.org/schema/context
                            http://www.springframework.org/schema/context/spring-context-4.3.xsd
                            http://www.springframework.org/schema/mvc
                            http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
" >
    <context:component-scan base-package="com.hell"/>
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

</beans>

一切顺利,控制器和视图通过@RequestMapping映射,但是当我添加这个空类并构建

@Configuration
public class Config {
}

路由不起作用,它说404错误。 然后我必须添加<mvc:annotation-config/>@EnableWebMVC,然后路由工作 有人可以解释一下,我觉得这太奇怪了 编辑: 这是我的web.xml来配置DispatcherServlet

<servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

2 个答案:

答案 0 :(得分:0)

我搜索了互联网,发现context:component-scan告诉Spring扫描@Configuration类,所以也许这就是我的问题的答案,任何人都应该纠正我。

答案 1 :(得分:0)

@Configuration用于基于Java的弹簧配置,所以我认为如果你通过Java代码配置你的bean,那么你的xml配置是有限的。我建议坚持一种方法,这将使你的代码容易.maintain