创建一个SpringMVC项目,完成简单银行系统的登陆页面的计设(login.jsp),并完成配置DispatchServlet,Spring-mvc.xml(applicationContext.xml),controller类的编写,当用户输入: ~/login时,进入login.jsp页面。 实验2 在login.jsp页面上,输入userName,Password 时,提交到控制层 userlogin方法,并在控制台输出userName,password, 如果,用户名和密码是ZhangSan和123时,则跳转到 main.jsp 并显示用户名在页面上。否则,跳转到 login.jsp页面,并显示用户名或密码错误。
时间: 2024-02-29 15:52:13 浏览: 143
springmvc无法访问/WEB-INF/views下的jsp的解决方法
5星 · 资源好评率100%
以下是实现上述功能的步骤:
1. 创建一个SpringMVC项目,可以使用Spring Tool Suite等IDE工具来创建。
2. 在webapp目录下创建login.jsp页面,该页面包含一个表单,可以输入用户名和密码,并且有一个提交按钮。
3. 在web.xml文件中配置DispatchServlet,将其映射到“/”路径下。
4. 在Spring-mvc.xml(applicationContext.xml)文件中配置Controller和视图解析器。
5. 编写Controller类,其中包含userlogin方法,该方法接收用户输入的用户名和密码,并进行相应的处理。
6. 在userlogin方法中,可以使用HttpServletRequest对象来获取用户输入的用户名和密码。
7. 如果用户名和密码是ZhangSan和123时,则跳转到main.jsp页面,并显示用户名在页面上。否则,跳转到login.jsp页面,并显示用户名或密码错误。
8. 在main.jsp页面中,显示用户输入的用户名。
下面是实现上述功能的代码示例:
1. login.jsp页面
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login Page</title>
</head>
<body>
<h2>Login Page</h2>
<form action="${pageContext.request.contextPath}/userlogin" method="post">
<label for="userName">UserName:</label>
<input type="text" id="userName" name="userName"/><br/><br/>
<label for="password">Password:</label>
<input type="password" id="password" name="password"/><br/><br/>
<input type="submit" value="Login"/>
</form>
</body>
</html>
```
2. Spring-mvc.xml文件
```
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
<context:component-scan base-package="com.example.controller" />
<mvc:annotation-driven />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
```
3. Controller类
```
package com.example.controller;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class UserController {
@RequestMapping(value = "/login", method = RequestMethod.GET)
public String showLoginPage() {
return "login";
}
@RequestMapping(value = "/userlogin", method = RequestMethod.POST)
public String userLogin(HttpServletRequest request, Model model) {
String userName = request.getParameter("userName");
String password = request.getParameter("password");
if (userName.equals("ZhangSan") && password.equals("123")) {
model.addAttribute("userName", userName);
return "main";
} else {
model.addAttribute("errorMsg", "Username or password is incorrect");
return "login";
}
}
}
```
4. main.jsp页面
```
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Main Page</title>
</head>
<body>
<h2>Welcome ${userName}!</h2>
</body>
</html>
```
阅读全文