如何在web.xml中注册Spring @Configuration带注释的类而不是applicationContext.xml文件?

时间:2011-11-10 06:37:07

标签: java spring spring-3 spring-annotations

我在网络应用程序中一起使用jsf和spring。我在一个配置类中配置了数据源和会话工厂,该配置类使用@Configuration, @ComponentScan等注释。我的项目中没有任何applicationContext.xml文件,因为我正在处理每个上下文条目Configuration类中的xml。测试用例成功运行但是当我部署我的Web应用程序时,它给了我错误

  

java.lang.IllegalStateException:找不到WebApplicationContext:否   ContextLoaderListener注册?

现在,如果我在web.xml中提供监听器类,

<listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

它给了我错误,

  

/WEB-INF/applicationContext.xml未找到

根据ContextLoaderListener的文档,如果我没有明确地在contextConfigLocation中提供web.xml参数,它将搜索名为{{1的默认弹簧上下文文件在applicationContext.xml中。现在,如果我不想使用spring上下文文件并使用注释进行所有配置,我该怎么办?我应该如何注册监听器类web.xml,以便不使用xml文件和仅使用注释,我可以使用spring和jsf运行我的Web应用程序?

2 个答案:

答案 0 :(得分:131)

web.xml中,您需要使用AnnotationConfigWebApplicationContext

引导上下文
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextClass</param-name>
        <param-value>
            org.springframework.web.context.support.AnnotationConfigWebApplicationContext
        </param-value>
    </init-param>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            org.package.YouConfigurationAnnotatedClass
        </param-value>
    </init-param>
</servlet>

并且不要忘记使用@EnableWebMvc来启动MVC注释。

进一步阅读:

编辑为“评论跟进”=&gt;成为图灵完成:

是的,你当然需要一个听众。虽然上面完全回答了问题“如何在web.xml中注册Spring @Configuration注释类而不是applicationContext.xml文件”,但这里有一个来自Spring官方文档的example,它布局了完整web.xml

<web-app>
  <!-- Configure ContextLoaderListener to use AnnotationConfigWebApplicationContext
       instead of the default XmlWebApplicationContext -->
  <context-param>
      <param-name>contextClass</param-name>
      <param-value>
          org.springframework.web.context.support.AnnotationConfigWebApplicationContext
      </param-value>
  </context-param>

  <!-- Configuration locations must consist of one or more comma- or space-delimited
       fully-qualified @Configuration classes. Fully-qualified packages may also be
       specified for component-scanning -->
  <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>com.acme.AppConfig</param-value>
  </context-param>

  <!-- Bootstrap the root application context as usual using ContextLoaderListener -->
  <listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

  <!-- Declare a Spring MVC DispatcherServlet as usual -->
  <servlet>
      <servlet-name>dispatcher</servlet-name>
      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
      <!-- Configure DispatcherServlet to use AnnotationConfigWebApplicationContext
           instead of the default XmlWebApplicationContext -->
      <init-param>
          <param-name>contextClass</param-name>
          <param-value>
              org.springframework.web.context.support.AnnotationConfigWebApplicationContext
          </param-value>
      </init-param>
      <!-- Again, config locations must consist of one or more comma- or space-delimited
           and fully-qualified @Configuration classes -->
      <init-param>
          <param-name>contextConfigLocation</param-name>
          <param-value>com.acme.web.MvcConfig</param-value>
      </init-param>
  </servlet>

  <!-- map all requests for /app/* to the dispatcher servlet -->
  <servlet-mapping>
      <servlet-name>dispatcher</servlet-name>
      <url-pattern>/app/*</url-pattern>
  </servlet-mapping>
</web-app>

答案 1 :(得分:11)

在这里提出一个旧问题,但是现在你可以使用最新版本的Spring(v3.0 +)完全摆脱web.xml,只要你在支持Servlet 3.0 +的Web容器上部署你的应用程序。 / p>

可以实现Spring的WebApplicationInitializer接口来执行与web.xml中相同的配置。在Servlet 3.0+容器上运行的Spring 3.0+应用程序将自动检测此实现类。

如果设置相当简单,您可以使用Spring提供的另一个类,如下所示。这里所做的就是设置@Configuration类并列出servlet映射。保持设置非常简单。

public class WebInit extends AbstractAnnotationConfigDispatcherServletInitializer{

    @Override
    protected Class<?>[] getRootConfigClasses() {
        return null;
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {

        return new Class[] {AppConfig.class};
    }

    @Override
    protected String[] getServletMappings() {
        return new String[] {
                 "*.html"
                ,"*.json"
                ,"*.do"};
    }
}