我在Action1中存储数据
ActionContext.getContext.getSession.put("item.pet_Id","hsy");
我在Action2中读取数据
int num=0;
num=ActionContext.getContext.getSession.get("item.pet_id");
为什么我在Action2中取不到值?
我在Action1中存储数据
ActionContext.getContext.getSession.put("item.pet_Id","hsy");
我在Action2中读取数据
int num=0;
num=ActionContext.getContext.getSession.get("item.pet_id");
为什么我在Action2中取不到值?
取出来的是Object,而你却把它赋给一个int。
难道没有报错?