struts 2ユーザーログインブロックテスト


初めてブログを書いても、どう書くか分からないので、まずコードを貼っておきましょう.
簡単なログインチェック
遮断器コアコード:PermissionInterceptor.java
package interceptor;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.Interceptor;

public class PermissionInterceptor implements Interceptor {
	@Override
	public void destroy() {
		// TODO Auto-generated method stub

	}

	@Override
	public void init() {

	}

	@Override
	public String intercept(ActionInvocation invocation) throws Exception {
		Object user = ActionContext.getContext().getSession().get("user");
		if (user != null) {
			String s = invocation.invoke();// 
			return s; // user null, , action 
		}
		ActionContext.getContext().put("message", " ");
		return "success";
	}

}

ブロッキングプロファイル:struts.xml:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
	"http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
	<package name="chao" extends="struts-default">
		<interceptors>
			<interceptor name="permission" class="interceptor.PermissionInterceptor" /><!--   -->
			<interceptor-stack name="permissionStack">
				<interceptor-ref name="defaultStack" />
				<interceptor-ref name="permission" /><!--  ///// -->
			</interceptor-stack>
		</interceptors>
		<!-- <default-interceptor-ref name="permissionStack" /> --><!-- // action  -->
		<global-results>
			<result name="success">/WEB-INF/page/bing.jsp</result>
		</global-results>
		<action name="hello_*" class="chao.HelloWorldAction" method="{1}">
			<result>/WEB-INF/page/hello.jsp</result>
		</action>
		<action name="bing_*" class="chao.UserAction" method="{1}">
			<interceptor-ref name="permissionStack" /><!--       ///// -->
		</action>
	</package>
</struts>

アナログログイン操作:login.jsp:
<%@ page language="java" contentType="text/html; charset=utf-8"
	pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
	<%
		request.getSession().setAttribute("user", "chao");
	%>
	ok  user 。。。。。。。
</body>
</html>

シミュレーションはログインを終了します.jsp:
<%@ page language="java" contentType="text/html; charset=utf-8"
	pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
	<%
		request.getSession().removeAttribute("user");
	%>
	onnnnnnnnn     user 。。。。。。
</body>
</html>

Actionファイル:UserAction.java:
package chao;

public class UserAction{

	private String message;

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

	public String addUI() {
		this.message = "addUi";
		return "success";
	}

	public String execute() {
		this.message = "execute";
		return "success";
	}
}

このようにしてセッションオブジェクトのコンテンツを取得する方法:ActionContext.getContext().getSession().get("username");
割り当て方法:
ActionContext.getContext().getSession().put("username","chaoyongbing");
request,アプリケーション同様
action属性に:chaoyongbing/helloを割り当てる.jspデフォルトでsuccessを返すとが実行されます.
接尾辞の変更:
ダイナミックコールに「!eg:クラス名!メソッド名