3

我在将@Autowired 与 RESTEasy 2.2.1.GA 和 Spring 3.0.5.RELEASE 一起使用时遇到了麻烦。我总是在

String result = customerBo.getMsg();

为我服务。

如何纠正我的代码的自动装配行为?

这是我的 RESTEasy 服务:

@Component
@Path("/api")
public class Rest {

    @Autowired
    CustomerBo customerBo;

      @GET
      @Produces("text/plain")
      public String getXMLMessage() {
              String result = customerBo.getMsg();
              return result;
      }
}

这是我的 web.xml:

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

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

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

    <!-- JBoss RESTEasy -->
    <context-param>
        <param-name>resteasy.resources</param-name>
        <param-value>ua.softserve.hotel.api.Rest</param-value>
    </context-param>

    <listener>
        <listener-class>
            org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap
        </listener-class>
    </listener>

    <servlet>
        <servlet-name>resteasy-servlet</servlet-name>
        <servlet-class>
            org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher
        </servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>resteasy-servlet</servlet-name>
        <url-pattern>/api</url-pattern>
    </servlet-mapping>
    <!-- JBoss RESTEasy end -->

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

    <servlet-mapping>
        <servlet-name>appServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <filter>
        <filter-name>charsetFilter</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>
        <init-param>
            <param-name>forceEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>charsetFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

    <filter>
        <filter-name>springSecurityFilterChain</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>springSecurityFilterChain</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

</web-app>

这是我的 root-context.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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang"
    xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
        http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">

    <!-- Root Context:   -->

    <context:annotation-config />

    <bean id="customerBo" class="ua.softserve.hotel.api.CustomerBoImpl">
    </bean>

    <context:component-scan base-package="ua.softserve.hotel" />

    <import resource="data.xml" />
    <import resource="security.xml" />

</beans>
4

2 回答 2

0

我的问题解决了。问题在于,对于实现,我使用了来自不同来源的文章,用于不同版本的库。

我在官方文档中找到的问题的正确答案:http: //docs.jboss.org/resteasy/docs/2.2.1.GA/userguide/html/RESTEasy_Spring_Integration.html

于 2012-08-08T16:34:44.940 回答
0

根据文档,SpringContextLoaderListener 必须在 ResteasyBootstrap 之后声明,因为它使用由它初始化的 ServletContext 属性。

org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap

org.jboss.resteasy.plugins.spring.SpringContextLoaderListener

于 2013-11-23T05:11:26.057 回答