1

我创建了一个 Controller bean 来映射一个专用的 URI。

web.xml文件:

    <!-- Spring MVC Servlet (that will route HTTP requests to BlazeDS) -->
 <servlet>
  <servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <init-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>/WEB-INF/spring-main-config.xml</param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
 </servlet>

 <!-- We are only using BlazeDS AMF channels to communicate with FlexClient, so let's map URLs accordingly. -->
 <servlet-mapping>
  <servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
  <url-pattern>/messagebroker/*</url-pattern>        
 </servlet-mapping>   

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

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

spring-main-config.xml文件:

 <!-- Import configuration base -->
 <import resource="spring-base-config.xml"/>  

 <!-- Flex integration within Spring. -->
 <flex:message-broker services-config-path="/WEB-INF/flex-services-config.xml">
  <flex:remoting-service />
 </flex:message-broker>

 <!-- Session-scoped bean for User Info -->
 <bean class="com.sharehunter.businessservices.common.UserSessionInfo" scope="session">
  <aop:scoped-proxy proxy-target-class="false"/>
 </bean>    

spring-filter-config.xml文件:

    <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
  <property name="mappings">
   <value>
   /fbauth=myController
   </value>
  </property>
 </bean>

 <bean id="myController" 
  class="myapp.controller.myController" />

我的 bean 控制器文件:

package myapp.controller;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;

    public class MyController extends AbstractController{

    @Autowired
    UserSesson userSession;

    @Autowired
    BusinessLogger logger;

 @Override
 protected ModelAndView handleRequestInternal(HttpServletRequest request,
   HttpServletResponse response) throws Exception {

  // TO DO - Facebook authentication
  return null;
 }
 }

我的问题:我的 Controller bean 中的所有 Autowired bean 已经等于 null。我不明白我的配置中的问题在哪里......

非常感谢您的帮助 !

安东尼

4

2 回答 2

2

You have two different contextx defined (spring-filter-config.xml and spring-main-config.xml), but you should probably only have one. <context:annotation-driven/> is only defined in spring-main-config.xml, and not in spring-filter-config.xml, so any beans defined in spring-filter-config.xml won't be autowired.

You have your controllers defined in spring-filter-config.xml, but controllers are supposed to be associated with the ServiceDispatcherServlet. You need to move the contents of spring-filter-config.xml into spring-main-config.xml, and then remove the ContextLoaderListener - you don't seem to have any proper use for it.

于 2010-09-06T11:59:23.377 回答
0

你的bean映射在哪里??

在xml文件中提到然后@Autowired默认识别哪个bean类被调用......

于 2011-11-09T05:14:18.197 回答