2

我最近将我的代码从 jboss 4.2.3 迁移到了 jboss 7。有些奇怪,我不知道原因。我在处理程序类的顶部使用了注释 @Controller,但它不再起作用。当我改为使用 xml 时,它工作正常。有人给点提示吗?

web.xml

   <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">

    <display-name>asweb</display-name>

    <filter>
      <filter-name>springCharacterEncodingFilter</filter-name>
      <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
      <init-param>
        <param-name>encoding</param-name>
        <param-value>UTF-8</param-value>
      </init-param>
    </filter>

    <filter>
        <filter-name>openEntityManagerInViewFilter</filter-name>
        <filter-class>org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter</filter-class>
    </filter>

    <filter-mapping>
      <filter-name>springCharacterEncodingFilter</filter-name>
      <url-pattern>*.do</url-pattern>
    </filter-mapping>

    <filter-mapping>
        <filter-name>openEntityManagerInViewFilter</filter-name>
        <url-pattern>*.do</url-pattern>
    </filter-mapping>

    <filter-mapping>
        <filter-name>openEntityManagerInViewFilter</filter-name>
        <url-pattern>/ws/*</url-pattern>
    </filter-mapping>

    <filter>
        <filter-name>sitemesh</filter-name>
        <filter-class>
            com.opensymphony.module.sitemesh.filter.PageFilter
        </filter-class>
    </filter>

    <filter-mapping>
        <filter-name>sitemesh</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

<servlet>
        <servlet-name>simple</servlet-name>
        <servlet-class>org.sonatype.mavenbook.web.SimpleServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>simple</servlet-name>
        <url-pattern>/simple.do</url-pattern>
    </servlet-mapping>
    <servlet>
         <servlet-name>aswebmvc</servlet-name>
         <servlet-class>org.springframework.web.servlet.DispatcherServlet
         </servlet-class>
         <load-on-startup>3</load-on-startup>
     </servlet>

     <servlet-mapping>
         <servlet-name>aswebmvc</servlet-name>
         <url-pattern>*.do</url-pattern>
     </servlet-mapping>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/applicationContext.xml
        </param-value>
    </context-param>

    <context-param>
        <param-name>log4jConfigLocation</param-name>
        <param-value>/WEB-INF/classes/log4j.properties</param-value>
    </context-param>

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

    <jsp-config>
        <taglib>
            <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
            <taglib-location>/WEB-INF/tld/c.tld</taglib-location>
        </taglib>
        <taglib>
            <taglib-uri>http://java.sun.com/jsp/jstl/fmt</taglib-uri>
            <taglib-location>/WEB-INF/tld/fmt.tld</taglib-location>
        </taglib>
    </jsp-config>

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

</web-app>

aswebmvc-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:context="http://www.springframework.org/schema/context" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
       http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
       http://www.springframework.org/schema/context  
       http://www.springframework.org/schema/context/spring-context-2.5.xsd">

    <context:component-scan base-package="com.xxx.appstore.web.controller" />
    <context:component-scan base-package="com.xxx.appstore.web.controller.admin" />

    <bean id="webController" class="com.xxx.appstore.web.controller.WebController"/>

    <bean id="localeChangeInterceptor"
        class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
        <property name="paramName" value="local" />
    </bean>
    <bean id="handlerMapping"
        class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
        <property name="interceptors">
            <ref bean="localeChangeInterceptor" />
        </property>
    </bean>
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="synchronizeOnSession" value="true"/>
    </bean>

    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="order" value="1" />
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
</beans>

我的控制器类

package com.xxx.appstore.web.controller;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;


@Controller
public class WebController 
{

    private static Log logger = LogFactory.getLog(WebController.class);

    @RequestMapping("home.do")
    public String home2(HttpServletRequest request, ModelMap model) {
         return "";
     }
   @RequestMapping("/home.do")
    public String home(HttpServletRequest request, ModelMap model) {

        return "web/home";
    }

}

我已经更新了配置文件,这对我来说适用于大多数注释。

4

2 回答 2

5

Spring 2 注解与较新版本的 JBoss 有一些不兼容;我的 Spring 2 应用程序中的注释在 JBoss 5 中没有被识别,我需要将 Spring 升级到 v3 才能工作。 这是一个 Spring JIRA。请注意,修复版本在 v3.0 RC1 中。

不确定 JBoss 7 是否存在同样的问题,但似乎有可能。

于 2011-07-31T02:40:41.707 回答
2

是的 - 如果你想在 jboss 7 上使用 spring mvc,你需要将 spring mvc 升级到 3。新特性之一是更好地支持 CDI。升级后,如果您想将 ejb 直接映射到您的 servlet,您仍然需要做一些工作。你会想在你的 spring 配置中添加这样的东西来连接 ejb:

<jee:local-slsb id="ejbReference" jndi-name="ejb/exampleEjb"
      business-interface="example.ExampleEjb/>

如本用户指南所示:http: //docs.redhat.com/docs/en-US/JBoss_Web_Framework_Kit/1.2/html/Spring_Developer_Guide/ch07s05s02.html#ejb-reference

然后,您可以像这样将 ejb 注入 servlet:

@EJB(mappedName="java:global/earfile/jarfile/exampleEjb!com.app.ExampleEjb")
private ExampleEjb ejb;

您可以在日志中找到您的 ejb 的确切 jndi 参考,但这本质上是如何将 sprinc mvc 与 jboss 的 cdi 支持连接起来。

于 2011-08-11T15:18:31.463 回答