Flask接口签名sign原理与实例代码浅析
225
2023-06-10
SpringMVC 实现用户登录实例代码
SpringMVC的一个登陆小案例
准备工作
创建一个Dynamic Web Project(本人是Eclipse)
添加相关的jar包,构建路径
创建springMVC-servlet.xml,及完善web.xml
创建代码逻辑
目录结构如下
对于新手而言,有一个项目的完整的目录结构是多么幸福的一件事啊。
目录结构
个人建议:注意其中的springMVC-servlet.xml的位置。以及源代码包的名称。
代码实战
首先是大管家,web.xml:
xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
然后是小管家springMVC-servlet.xml:
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:p="http://springframework.org/schema/p" xmlns:context="http://springframework.org/schema/context" xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans-3.0.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context-3.0.xsd http://springframework.org/schema/mvc http://springframework.org/schema/mvc/spring-mvc-3.0.xsd http://springframework.org/schema/util http://springframework.org/schema/util/spring-util-3.0.xsd">
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:p="http://springframework.org/schema/p"
xmlns:context="http://springframework.org/schema/context"
xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans-3.0.xsd
http://springframework.org/schema/context http://springframework.org/schema/context/spring-context-3.0.xsd
http://springframework.org/schema/mvc http://springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://springframework.org/schema/util http://springframework.org/schema/util/spring-util-3.0.xsd">
再就是一个登陆界面了,login.jsp:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
username:
Password:
type="password" name="password">
value="登陆">
login.jsp对应的那个action就是要进行处理的后台页面,也就是我们的Login.Java:
package controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller // @Controller 代表本Java类是controller控制层
public class Login {
/**
* @RequestParam注解的作用是:根据参数名从URL中取得参数值
* @param username
* 用户名,一定要对应着表单的name才行
* @param password
* 用户密码,也应该对应表单的数据项
* @param model
* 一个域对象,可用于存储数据值
* @return
*/
@RequestMapping("/login") // @RequestMapping 注解可以用指定的URL路径访问本控制层
public String login(@RequestParam("username") String username, @RequestParam("password") String password,
Model model) {
if (username.equals("admin") && password.equals("admin")) {
model.addAttribute("username", username);
return "ok.jsp";
} else {
model.addAttribute("username", username);
return "no.jsp";
}
}
}
最后就是ok.jsp和no.jsp了:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
${username } 欢迎你!
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
Sorry,没有${username }这个用户!
测试
在你的浏览器上输入http://localhost:8080/SpringTest/login.jsp
然后就可以对代码进行测试了。本人亲测好用,这里就不再贴图了。
总结
在web.xml中配置DispatcherServlet核心控制器
在WEhFsGeB-INF文件夹中创建springMVC-servlet.xml配置文件
@Controller、@RequestMapping、@RequestParam以及Model域对象等的使用
表单以post方式,或者使用get方式都是可以的
下面是注解的小技巧:
@Controller就是对应于springMVC-servlet.xml中的
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~