将 Struts 2 与 Apache Shiro 集成时如何显示结果页面
Posted
技术标签:
【中文标题】将 Struts 2 与 Apache Shiro 集成时如何显示结果页面【英文标题】:How to show result page when integrating Struts 2 with Apache Shiro 【发布时间】:2017-12-05 22:14:42 【问题描述】:使用:
struts2 2.5.10、spring 4.x、struts2-spring-plugin 2.5.10、shiro 1.4.0、 shiro-spring 1.4.0.
web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<display-name>Archetype Created Web Application</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:beans.xml</param-value>
</context-param>
<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>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<!-- shiro filter mapping has to be first -->
<filter-mapping>
<filter-name>shiroFilter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>ERROR</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
beanx.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
">
<bean name="loginAction" class="example.shiro.action.LoginAction" >
</bean>
<bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
<property name="securityManager" ref="securityManager" />
<property name="loginUrl" value="/login.jsp" />
<property name="filterChainDefinitions">
<value>
/login.jsp = authc
/logout = logout
/* = authc
</value>
</property>
</bean>
<bean id="iniRealm" class="org.apache.shiro.realm.text.IniRealm">
<property name="resourcePath" value="classpath:shiro.ini" />
</bean>
<bean id="securityManager" class="org.apache.shiro.web.mgt.DefaultWebSecurityManager">
<property name="realm" ref="iniRealm" />
</bean>
<bean id="lifecycleBeanPostProcessor" class="org.apache.shiro.spring.LifecycleBeanPostProcessor"/>
</beans>
struts.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true" />
<package name="default" extends="struts-default">
<action name="list" class="loginAction" method="list">
<result name="success">/success.jsp</result>
<result name="error">error.jsp</result>
</action>
</package>
</struts>
index.jsp
:
<body>
<s:action name="list" />
</body>
login.jsp
看起来像:
<form name="loginform" action="" method="post">
<table align="left" border="0" cellspacing="0" cellpadding="3">
<tr>
<td>Username:</td>
<td><input type="text" name="username" maxlength="30"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" maxlength="30"></td>
</tr>
<tr>
<td colspan="2" align="left"><input type="checkbox"
name="rememberMe"><font size="2">Remember Me</font></td>
</tr>
<tr>
<td colspan="2" align="right"><input type="submit"
name="submit" value="Login"></td>
</tr>
</table>
</form>
LoginAction.list()
:
public String list()
Subject currentUser = SecurityUtils.getSubject();
if(currentUser.isAuthenticated()) System.out.println("user : "+currentUser.getPrincipal());
System.out.println("You are authenticated!");
else
System.out.println("Hey hacker, hands up!");
return "success";
shiro.ini
:
[users]
root=123,admin
guest=456,guest
frank=789,roleA,roleB
# role name=permission1,permission2,..,permissionN
[roles]
admin=*
roleA=lightsaber:*
roleB=winnebago:drive:eagle5
index.jsp
、login.jsp
和 success.jsp
放在 webapp 下。
我想要的是:输入LoginAction.list()
需要认证,如果登录成功,然后运行LoginAction.list()
并返回"success"
然后显示success.jsp
定义为Struts动作结果。
现在LoginAction.list()
登录成功后可以执行,但是success.jsp
不显示,浏览器是空白页。
为什么?
【问题讨论】:
可以发shiro.ini
的内容吗?
@RomanC 我在帖子底部添加了shiro.ini,请检查,谢谢!
【参考方案1】:
我找到了原因:我在 index.jsp 中使用了<s:action name="list" />
,但是,struts 文档说如果我们想看到带有<s:action>
的结果页面,那么我们必须将其属性executeResult
设置为true,就像<s:action name="list" executeResult="true"/>
。
在我看来,这有点牵强,这个属性应该默认为true。
【讨论】:
最好从欢迎页面重定向到某些操作,而不是使用<s:action>
标签。
在欢迎页面重定向到操作是常见的做法。 <s:action>
标签在某些情况下很有用,但它可能会导致一些难以调试的严重错误。总的来说,只有当你知道自己在做什么并且没有简单的方法来完成这项工作时,才使用<s:action>
标签。【参考方案2】:
有一个如何配置applicationContext.xml
with Shiro的示例:
<property name="filterChainDefinitions">
<value>
# some example chain definitions:
/admin/** = authc, roles[admin]
/** = authc
# more URL-to-FilterChain definitions here
</value>
</property>
以/admin/
开头的网址受admin
角色的保护,任何其他网址都不受保护。如果 Struts 动作和结果 JSP 不在保护区内,它们将被显示。
【讨论】:
以上是关于将 Struts 2 与 Apache Shiro 集成时如何显示结果页面的主要内容,如果未能解决你的问题,请参考以下文章
org.apache.struts.action.*; JAR包在哪里可以下载?
如何将 Apache Shiro 与 AngularJS 集成
将 apache Shiro 与 Spring MVC 非 xml 项目一起使用