<welcome-file-list>
<welcome-file>/forword.jsp</welcome-file>
</welcome-file-list>
默认是index.jsp 你改为自己的 注意路径
在web.xml文件里有一小段代码,如下:<welcome-file-list>
<welcome-file>index.jsp(在这里设置自己的欢迎页,这里以index.jsp为例)</welcome-file>
</welcome-file-list>
你可以把最顶部要显示的东西做一个页面,比如叫 header.jsp,这个页面就放用户登录信息比如你说的 【 A用户,欢迎你!退出 】等等。
你在登录后,声明sesson对象
把用户信息放到session。
session.setAttribute("userInfo", userInfo)
然后在每个页面用JSP指令把该页面导入到要显示的页面就OK啦。
header.jsp页面
${sessionScope.userInfo.username} 用户,欢迎您
<%@ include file="header.jsp"%>
这样就会达到你想要的效果。
如果还有不明白的,就追问我啦。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)