在这
z.JSP 中的代码 我只想在对象 y 不存在时创建它。我做了一个研究,但找不到它是怎么回事。
你的意思是:
if(request.getSession().getAttribute("yy") == null) {
usecase y = new y();
request.getSession().setAttribute("yy", y);
}
可以进一步简化为:
if(session.getAttribute("yy") == null) {
usecase y = new y();
session.setAttribute("yy", y);
}
顺便说一句,了解Java 命名约定。