apache-shiro雑記(三)apache-shiroを使った後、HttpSession.getServiceletContext()APIが正常に動作しない
1080 ワード
apache-shiroを使った後、偶然servlet環境下(私が開発した時に使ったservlet 3.0)HttpSessionを発見した.getServiceletContext()はnullがShiroHttpSession実装クラスのソースコードを表示し、shiroの公式ドキュメントと結合していることを返します.Webの変更が見つかりました.xmlはこの問題を解決することができる.
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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_3_0.xsd"
version="3.0">
<!-- apache-shiro -->
<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>
</web-app>