我的网站进入登录页面,我想在用户登录时重定向到另一个页面。我有一个" POST"发送"用户名"的方法和#34;密码"到服务器和服务器检查用户名和密码是否存在。
这是我的方法
@POST
@Path("logIn")
public void signIn(@PathParam("profileName") String profileName, @PathParam("password") String password) {
if (profileService.getProfile(profileName) != null && (profileService.getPassword(profileName)).equals(password)){
//Render a new page ex "feed.jsp"
}
else {
//send unsucessful message back to client??
}
客户端能够正确地发布用户名和密码并检查它是否存在...我只是不知道如何使其呈现(重定向到???)新页面