摘要:
开发的时候在jsp页面遇到了如下代码: String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.ge 阅读全文
摘要:
Struts2有四种方式获取Web中 request、session、application 的方式。 1、通过实现ServletRequestAware 接口通过IOC机制注入request(此方法最麻烦,不推荐使用) /** * 通过实现ServletXxxAware 接口的方式可以由Strut 阅读全文
摘要:
1、使用原始方式获取表单数据封装到实体类对象 login.jsp <html> <head> <title>登陆页面</title> </head> <body> <form action="test/login" method="post"> 用户:<input type="text" name= 阅读全文