我使用HTML页面和Java Servlet类创建了一个登录页面。但是我想知道是否可以使用JSP而不是Java文件?那么必须在Java类中将这段代码用到JSP页面中并且仍然具有相同的功能吗?
<form action="Lognn" method="post">
<input type="text" name="name"/>
<input type="text"name="pass"/>
Java类
Public class Login extends HttpServlet {
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
try (PrintWriter out = response.getWriter()) {
String name = request.getParameter("name");
String pass = request.getParameter("pass");
MyDb1 db = new MyDb1();
Connection con = db.getCon();
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery("select uid,name,pass from register where email = '"+name+"' and pass = '"+pass+"'");
while ((rs.next())) {
String uid = rs.getString("uid");
//out.println("User id"+uid);
HttpSession session=request.getSession();
session.setAttribute("name",uid);
response.sendRedirect("http://localhost:8080/Final/userprofile.jsp");
}
} catch (SQLException ex) {
Logger.getLogger(Login.class.getName()).log(Level.SEVERE, null, ex);
}
通常,每个JSP都被翻译并编译为servlet,并且您可以使用JSP执行许多servlet操作。
您可以更改表单操作=“Lognn”method =“post”以形成action =“Lognn.jsp”method =“post”,然后
在Lognn.jsp中,您可以从html中读取输入参数,如<%= request.getParameter(“name”)%>,然后
在Lognn.jsp中,您可以直接连接到数据库,也可以使用EJB
最后你可以从同一个JSP中返回html输出。
它正式地在没有servlet的情况下工作,但是在CATALINA_HOME / WORk目录中,servlet将在内部创建并从JSP编译。