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

2022-08-31 14:41:27

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

java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered?

现在,如果我在网络中给听众上课.xml,

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

它给了我错误,

/WEB-INF/applicationContext.xml未找到

根据 的文档,如果我不显式给出参数,它将搜索名为 中的默认 spring 上下文文件,这是真的。现在,如果我不想使用spring上下文文件并执行所有带有注释的配置,该怎么办?我应该如何注册监听器类,以便在不使用xml文件和仅使用注释的情况下,我能够使用spring和jsf运行我的Web应用程序?ContextLoaderListenercontextConfigLocationweb.xmlapplicationContext.xmlweb.xmlContextLoaderListener


答案 1

在您需要使用以下命令引导上下文时:web.xmlAnnotationConfigWebApplicationContext

<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>

不要忘记使用您的MVC注释来启动。@EnableWebMvc

延伸阅读:

EDIT作为“评论跟进”=>图灵完备:

是的,你当然需要一个听众。尽管上述内容完全回答了“如何在web.xml中注册Spring @Configuration注释类而不是appramentContext.xml文件”的问题,但以下是Spring官方文档中的一个示例,该示例布局完整: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>

答案 2

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

人们可以实现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"};
    }
}

推荐