在JSP中显示来自java类的数据

时间:2013-10-19 15:32:23

标签: java jsp servlets jstl

我正在尝试创建一个Web项目。我的问题是,我可以使用JSTL在JSP页面上显示java属性吗?我是JSP的新手 到目前为止,我创建了由servlet处理的登录页面。我想要实现的是用户使用他的凭据登录。并且基于凭证,数据在后台处理并显示在页面上。 (登录后用户点击页面我的信息并自动填充数据)。创建另一个servlet不是一个好选择,所以我可能需要从普通类调用数据(不需要表单)。

的Login.jsp

<form action="LoginServlet" method="post">
<table>
<tr><td>Login    : </td><td><input type="text" name="login"/></td></tr>
<tr><td>Password :</td><td><input type="password" name="password"/></td></tr>
<tr><td><input type="submit" value="Login"/></td><td></td></tr>
</table>
</form>

LoginServlet.java

protected void doGet(HttpServletRequest request, HttpServletResponse response) 
                                             throws ServletException, IOException {
        String login = request.getParameter("login");
        String password = request.getParameter("password");
        request.setAttribute("login", login);
        request.setAttribute("password", password);
        LoginService.setPublicID(login);
        boolean result = LoginService.Auth(login, password);
        System.out.println(result);
        if(result==true){
            getServletContext().getRequestDispatcher("/main.jsp").forward(request, response);
        }
        else{
            response.sendRedirect("login.jsp");
        }

protected void doPost(HttpServletRequest request, HttpServletResponse response) 
                                           throws ServletException, IOException {
            doGet(request, response);

 }

LoginService.java(auth.handler)[我使用静态publicID因为基于此,其他的东西已经完成]

public class LoginService {

    public static String publicID;

    public static String getPublicID() {
        return publicID;
    }
    public static void setPublicID(String login) {
        LoginService.publicID = login;
    }

    public static boolean Auth(String login, String password){

        System.out.println(password);
        if(password.equals("gw") && login.equals("servo")){
            return true;
        }
        else
        {
            return false;
        }
    }

}

这会将我重定向到main.jsp。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
   <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h2>Login successful!</h2>
<a href="userinfo.jsp">UserInfo</a>
 Welcome <c:out value="${login}"/>

</body>
</html>

UserInfoService.java

public class UserInfoService {
    static String userName;
    static String lastName;
    static String mobile;
    static String email;


    public static String getUserName() {
        return userName;
    }
    public static void setUserName(String userName) {
        userName = LoginService.getPublicID();
        UserInfoService.userName = userName;
    }
    public static String getEmail() {
        return email;
    }
    public static void setEmail(String email) {
        UserInfoService.email = email;
    }

}

最后。 UserInfo.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ page import="org.UserInfo.UserInfoService"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<c:out value="${UserInfoService.getUserName}"/>
</body>
</html>

但这总是空的。你能告诉我我哪里错了吗?

2 个答案:

答案 0 :(得分:0)

UserInfoService解析为null,您需要将其注册为bean see here

答案 1 :(得分:-1)

您没有从代码中的任何位置调用UserInfoService.setUserName()方法。