shiro-realm中注入userService失败,这是什么原因?

问题描述

realm中注入userService失败,这是什么原因?

web.xml中的配置

<!--加载spring配置文件到容器中-->

contextConfigLocation
classpath:spring*.xml

org.springframework.web.context.ContextLoaderListener

<!--设置字符集-->
<filter>
    <filter-name>encodingFilter</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>encodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

<!--shiro与spring集成-->
<filter>
    <filter-name>shiroFilter</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    <init-param>
        <param-name>targetFilterLifecycle</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>shiroFilter</filter-name>
    <url-pattern>/* </url-pattern>
</filter-mapping>

<!--springMVC-->
<servlet>
    <servlet-name>demoServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:/spring-mvc.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>demoServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

spring_shiro.xml中的配置

<bean id="cacheManager" class="shiro.EhCacheManager">
    <property name="cacheManagerConfigFile" value="classpath:ehcache.xml"/>
</bean>

<!-- Realm实现 -->
<bean id="credentialsMatcher" class="shiro.MyHashedCredentialsMatcher">
    <constructor-arg ref="cacheManager"/>
    <property name="hashAlgorithmName" value="md5"/>
    <property name="hashIterations" value="2"/>
    <property name="storedCredentialsHexEncoded" value="true"/>
</bean>
<bean id="userRealm" class="shiro.UserRealm">
    <property name="credentialsMatcher" ref="credentialsMatcher"/>
    <property name="cachingEnabled" value="true"/>
    <property name="authenticationCachingEnabled" value="true"/>
    <property name="authenticationCacheName" value="authenticationCache"/>
    <property name="authorizationCachingEnabled" value="true"/>
    <property name="authorizationCacheName" value="authorizationCache"/>
</bean>

<!-- 会话DAO -->
<bean id="sessionIdGenerator"
      class="org.apache.shiro.session.mgt.eis.JavaUuidSessionIdGenerator"/>
<bean id="sessionDAO"
      class="org.apache.shiro.session.mgt.eis.EnterpriseCacheSessionDAO">
    <property name="activeSessionsCacheName" value="shiro-activeSessionCache"/>
    <property name="sessionIdGenerator" ref="sessionIdGenerator"/>
</bean>

<!-- 会话验证调度器 -->
<bean id="sessionValidationScheduler"
      class="org.apache.shiro.session.mgt.quartz.QuartzSessionValidationScheduler">
    <property name="sessionValidationInterval" value="1800000"/>
    <property name="sessionManager" ref="sessionManager"/>
</bean>
<!-- 会话Cookie模板 -->
<bean id="sessionIdCookie" class="org.apache.shiro.web.servlet.SimpleCookie">
    <constructor-arg value="sid"/>
    <property name="httpOnly" value="true"/>
    <property name="maxAge" value="180000"/>
</bean>
<!-- 会话管理器 -->
<bean id="sessionManager"
      class="org.apache.shiro.web.session.mgt.DefaultWebSessionManager">
    <property name="globalSessionTimeout" value="1800000"/>
    <property name="deleteInvalidSessions" value="true"/>
    <property name="sessionValidationSchedulerEnabled" value="true"/>
    <property name="sessionValidationScheduler" ref="sessionValidationScheduler"/>
    <property name="sessionIdCookieEnabled" value="true"/>
    <property name="sessionIdCookie" ref="sessionIdCookie"/>
    <property name="sessionDAO" ref="sessionDAO"/>
</bean>

<!-- 安全管理器 -->
<bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
    <property name="realm" ref="userRealm"/>
    <property name="sessionManager" ref="sessionManager"/>
    <property name="cacheManager" ref="cacheManager"/>
</bean>
<!-- 相当于调用SecurityUtils.setSecurityManager(securityManager) -->
<bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
    <property name="staticMethod"
              value="org.apache.shiro.SecurityUtils.setSecurityManager"/>
    <property name="arguments" ref="securityManager"/>
</bean>

<!-- Shiro的Web过滤器 -->
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
    <property name="securityManager" ref="securityManager"/>
    <property name="loginUrl" value="/login.jsp"/>
    <property name="successUrl" value="/"/>
    <property name="unauthorizedUrl" value="/unauthorized.jsp"/>
    <property name="filters">
        <util:map>
            <entry key="authc" value-ref="formAuthenticationFilter"/>
        </util:map>
    </property>
    <property name="filterChainDefinitions">
        <value>
               /**=anon
        </value>
    </property>
</bean>
<!-- 基于Form表单的身份验证过滤器 -->
<bean id="formAuthenticationFilter"
      class="org.apache.shiro.web.filter.authc.FormAuthenticationFilter">
    <property name="usernameParam" value="username"/>
    <property name="passwordParam" value="password"/>
    <property name="loginUrl" value="/login.jsp"/>
</bean>

<!-- Shiro生命周期处理器-->
<bean id="lifecycleBeanPostProcessor"
      class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>

解决方案

http://www.oschina.net/question/593111_164461?sort=time

解决方案二:

     spring MVC配置文件路径修正下去掉斜杠,改为 <param-value>classpath:spring-mvc.xml</param-value>
时间: 2025-01-02 10:29:58

shiro-realm中注入userService失败,这是什么原因?的相关文章

spring 在Thread中注入@Resource失败,总为null的解决方案

@Resource private MyMapper myDao; 但是运行的时候,进入到这个线程,这个myDao总为null,也就是注入失败. 运行项目将会发现NullPointerException,也就是说SelectDataService的实例没有被注入到变量selectDataService中.那么,这是什么原因呢?首先来看看配置文件.  下面是web.xml: <context-param> <param-name>contextConfigLocation</p

JAVA CDI 学习(5) - 如何向RESTFul Service中注入EJB实例

RESTFul Service中如果要注入EJB实例,常规的@Inject将不起作用,在Jboss中,应用甚至都启动不起来(因为@Inject注入失败),解决方法很简单:将@Inject换成@EJB 参考代码: CityInvoker是一个Stateless的EJB package test; import javax.ejb.Stateless; import ... @Stateless public class CityInvoker { public CityResponse getCi

求教Myeclipse中启动weblogic失败

问题描述 求教Myeclipse中启动weblogic失败 先前在myeclipse10中装了weblogic12,是可以跑起来的.之后自己手动部署了一下项目,直接手动启动weblogic,可以启动,但是Myeclipse中的weblogic却是启动不起来了,求大神指教. 报错如下: 解决方案 怎么报错的?没看到截图呢 解决方案二: 已解决,是原来在weblogic的jdk中配置了参数,现在把参数去掉就OK了. 解决方案三: OK,解决了就好,这样下一次遇到同样的问题,思路会更清晰.

android webview中注入支持图片双击的js代码无效

问题描述 android webview中注入支持图片双击的js代码无效 javascript:(function(){ var objs = document.getElementsByTagName("img"); for(var i=0;i<objs.length;i++){ objs[i].ondblclick=function(){ window.webtest.openImage(this.src); } } } )() 我在android Webview中注入如上支

jdbc-sql语句中的?赋值失败??求大家帮忙找找原因,在下感激不尽

问题描述 sql语句中的?赋值失败??求大家帮忙找找原因,在下感激不尽 private Connection conn = null; private PreparedStatement pstmt = null; private ResultSet rs = null; public List supplierfindbyname(Supplierlocation su) { // TODO Auto-generated method stub List sulist = new ArrayL

求大神告知eclipse中关联library失败的解决办法

问题描述 求大神告知eclipse中关联library失败的解决办法 想实现一个Tab,想导入TabPageIndicartor的library,但老是错误,查了资料说是盘符错误,但还是不知道怎么操做,错误如图. 解决方案 http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2013/0522/1265.html 解决方案二: 谢谢回答.这个问题我已经解决了,只需要将library导入时,勾选将library文件同时复制到wordplace

shiro sessionManager配置登录认证失败

问题描述 shiro sessionManager配置登录认证失败 拿掉配置sessionManager就可以认证成功 我的配置截图 解决方案 http://my.oschina.net/boonya/blog/348149

指令-VC6.0中dll创建失败,编译报错怎么处理

问题描述 VC6.0中dll创建失败,编译报错怎么处理 VC6.0环境,创建DCOM的服务器. 想要生成一个dll文件,在project setting里面输入了指令 然后就出现了编译错误 这个怎么破?求各位大神解答! 解决方案 -f是参数吧,中间缺少空格. 解决方案二: nmake命令路径是否正确,是否PATH环境变量中.跟参数之间要有空格.

抽象类注入JedisPool失败

问题描述 抽象类注入JedisPool失败 public abstract class BusinessIdGenerateAbstract implements Serializable{ protected JedisPool jedisPool; protected void fromRedis(String idName,Queue queue){ try { jedis = jedisPool.getResource(); Map<String,String> model = jed