0

我用 gwt(使用 requestfactory)和 spring 得到这个错误

org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [org.calibra.server.service.AccountService] is defined: expected single bean but found 0: 
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:271)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1101)
at org.calibra.server.SpringServiceLocator.getInstance(SpringServiceLocator.java:24)
at com.google.web.bindery.requestfactory.server.LocatorServiceLayer.createServiceInstance(LocatorServiceLayer.java:56)

我的服务定位器

public class SpringServiceLocator implements ServiceLocator {
    @Override
    public Object getInstance(Class<?> clazz) {
        ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(                
            RequestFactoryServlet.getThreadLocalServletContext());
        return context.getBean(clazz);
    }
}

我的春季服务

@Service
public class AccountServiceImpl implements AccountService{
     @Override
     public void addNewAccount(Account account) {
       ...
     }

     @Override
     public List<Account> loadAllAccounts() {
        ...
     }

}

gwt requestContext,参考我的spring服务

@Service(value=AccountService.class, locator=SpringServiceLocator.class)
public interface AccountRequest extends RequestContext {

    Request<Void> addNewAccount(AccountProxy account);

    Request<List<AccountProxy>> loadAllAccounts();

}

我的 web.xml

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

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

<servlet>
    <servlet-name>gwtRequest</servlet-name>
    <servlet-class>com.google.web.bindery.requestfactory.server.RequestFactoryServlet</servlet-class>
</servlet>

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

<welcome-file-list>
    <welcome-file>welcomeGWT.html</welcome-file>
</welcome-file-list>

我不明白我怎么能有 0 个 AccountService bean?

我试图添加调度程序-servlet

<bean id="accountService" class="org.calibra.server.service.AccountServiceImpl"/>

我得到了同样的结果

任何想法?

编辑:如果有人有一个完整的例子,那可能很有用。

4

2 回答 2

0

我认为仅使用 ContextLoaderListener 是不够的,因为您似乎没有使用 DispatcherServlet(有吗?)。以下几行对我有用:

<filter>
    <filter-name>springRequestContextFilter</filter-name>
    <filter-class>org.springframework.web.filter.RequestContextFilter</filter-class>
</filter>

<filter-mapping>
    <filter-name>springRequestContextFilter</filter-name>
    <url-pattern>/gwtRequest</url-pattern>
</filter-mapping>
于 2012-08-16T09:17:52.220 回答
0

我在其他几个地方看到过这个问题。您应该首先尝试在 applicationContext.xml(而不是 dispatch-servlet.xml)中明确地将 AccountServiceImpl 定义为 bean,然后查看是否仍然出现错误,如果没有,那么您知道这是您缺少组件- 在您的应用程序上下文 xml 中扫描,这就是我认为的情况。

希望这可以帮助

于 2012-09-06T16:30:22.453 回答