@Scope出现404错误("请求")

时间:2016-08-18 09:01:39

标签: java spring scope

这是我的applicationContext.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"
xmlns:security="http://www.springframework.org/schema/security"

xmlns:cache="http://www.springframework.org/schema/cache"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd
http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd"
default-autowire="no">

<!-- simple cache manager -->

<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
     <property name="cacheManager" ref="ehcache"/>
</bean>

<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" >
    <property name="configLocation" value="classpath:ehcache.xml"/>
</bean>

<cache:annotation-driven />
<context:annotation-config />
<context:component-scan base-package="com.toto" scoped-proxy="interfaces"/>

</beans>

我的豆子:

@Named
@Scope(value = "request")
public class MyBeanImpl extends AbstractBean implements MyBean {

   // some stuff

}

此代码不起作用,我有一个404 - 找不到错误,当我想访问网址时。但如果我使用@Scope(&#34;原型&#34;)它可以工作,但我需要请求范围。

感谢您的帮助

0 个答案:

没有答案