struts2 标签输出map中非字符串型的KEY 5
看到网上很多回答通过KEY取MAP中的值是这么取的datamap['mykey'],但如果KEY值是个对象要怎么取?试过在JAVA存一个map:Longkey1=Long...
看到网上很多回答通过KEY取MAP中的值是这么取的 datamap['mykey'] , 但如果KEY值是个对象要怎么取?
试过 在JAVA 存一个 map:
Long key1 = Long.valueOf(123);
Object bean1 = new Object();
testMap.put(key1, bean1);
request.setAttribute("testMap", testMap);
在JSP中不想用迭代的话,怎么样输出key1对应的bean1?
已经证实下面写法无效:
<s:property value="#request.testMap[123]"/>
<s:property value="#request.testMap['123']"/> 展开
试过 在JAVA 存一个 map:
Long key1 = Long.valueOf(123);
Object bean1 = new Object();
testMap.put(key1, bean1);
request.setAttribute("testMap", testMap);
在JSP中不想用迭代的话,怎么样输出key1对应的bean1?
已经证实下面写法无效:
<s:property value="#request.testMap[123]"/>
<s:property value="#request.testMap['123']"/> 展开
1个回答
展开全部
首先,struts2进行权限验证是用拦截器做的
一个简单的登录拦截器示例如下:
package com.zdf.interceptor;
import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;
import com.zdf.entity.Admin;
@SuppressWarnings("serial")
public class LoginInterceptor extends AbstractInterceptor{
@Override
public String intercept(ActionInvocation invocation) throws Exception {
// TODO Auto-generated method stub
Admin admin = (Admin)invocation.getInvocationContext().getSession().get("ADMIN");
if(admin!=null){
return invocation.invoke();
}else{
return Action.LOGIN;
}
}
}
一个简单的登录拦截器示例如下:
package com.zdf.interceptor;
import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;
import com.zdf.entity.Admin;
@SuppressWarnings("serial")
public class LoginInterceptor extends AbstractInterceptor{
@Override
public String intercept(ActionInvocation invocation) throws Exception {
// TODO Auto-generated method stub
Admin admin = (Admin)invocation.getInvocationContext().getSession().get("ADMIN");
if(admin!=null){
return invocation.invoke();
}else{
return Action.LOGIN;
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询