登录:
创建好相关的实体类,预先准备好数据库连接池及其业务处理成和dal层的登录方法,在web文件夹下创建与登录有关的方法,运行时保证相关数据库是开启状态。
- //用户实体类
- package itcast.domain;
-
- public class User {
- private int id;
- private String name;
- private String gender;
- private int age;
- private String address;
- private String qq;
- private String email;
-
- private String username;
- private String password;
-
- public String getUsername() {
- return username;
- }
-
- public void setUsername(String username) {
- this.username = username;
- }
-
- public String getPassword() {
- return password;
- }
-
- public void setPassword(String password) {
- this.password = password;
- }
-
- public int getId() {
- return id;
- }
-
- public void setId(int id) {
- this.id = id;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getGender() {
- return gender;
- }
-
- public void setGender(String gender) {
- this.gender = gender;
- }
-
- public int getAge() {
- return age;
- }
-
- public void setAge(int age) {
- this.age = age;
- }
-
- public String getAddress() {
- return address;
- }
-
- public void setAddress(String address) {
- this.address = address;
- }
-
- public String getQq() {
- return qq;
- }
-
- public void setQq(String qq) {
- this.qq = qq;
- }
-
- public String getEmail() {
- return email;
- }
-
- public void setEmail(String email) {
- this.email = email;
- }
-
- @Override
- public String toString() {
- return "User{" +
- "id=" + id +
- ", name='" + name + '\'' +
- ", gender='" + gender + '\'' +
- ", age=" + age +
- ", address='" + address + '\'' +
- ", qq='" + qq + '\'' +
- ", email='" + email + '\'' +
- ", username='" + username + '\'' +
- ", password='" + password + '\'' +
- '}';
- }
- }
因为存在验证码,还需要写一个类设置验证码:
- package itcast.web.servlet;
-
- import javax.imageio.ImageIO;
- import javax.servlet.ServletException;
- import javax.servlet.annotation.WebServlet;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import java.awt.*;
- import java.awt.image.BufferedImage;
- import java.io.IOException;
- import java.util.Random;
-
- /**
- * 验证码
- */
- @WebServlet("/checkCodeServlet")
- public class CheckCodeServlet extends HttpServlet {
- public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
-
- //服务器通知浏览器不要缓存
- response.setHeader("pragma","no-cache");
- response.setHeader("cache-control","no-cache");
- response.setHeader("expires","0");
-
- //在内存中创建一个长80,宽30的图片,默认黑色背景
- //参数一:长
- //参数二:宽
- //参数三:颜色
- int width = 80;
- int height = 30;
- BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
-
- //获取画笔
- Graphics g = image.getGraphics();
- //设置画笔颜色为白色
- g.setColor(Color.BLACK);
- //填充图片
- g.fillRect(0,0, width,height);
-
- //产生4个随机验证码,12Ey
- String checkCode = getCheckCode();
- //将验证码放入HttpSession中
- request.getSession().setAttribute("CHECKCODE_SERVER",checkCode);
-
- //设置画笔颜色为darkslategray
- g.setColor(Color.WHITE);
- //设置字体的小大
- g.setFont(new Font("黑体",Font.BOLD,24));
- //向图片上写入验证码
- g.drawString(checkCode,15,25);
-
- //将内存中的图片输出到浏览器
- //参数一:图片对象
- //参数二:图片的格式,如PNG,JPG,GIF
- //参数三:图片输出到哪里去
- ImageIO.write(image,"PNG",response.getOutputStream());
- }
- /**
- * 产生4位随机字符串
- */
- private String getCheckCode() {
- String base = "0123456789ABCDEFGabcdefg";
- int size = base.length();
- Random r = new Random();
- StringBuffer sb = new StringBuffer();
- for(int i=1;i<=4;i++){
- //产生0到size-1的随机值
- int index = r.nextInt(size);
- //在base字符串中获取下标为index的字符
- char c = base.charAt(index);
- //将c放入到StringBuffer中去
- sb.append(c);
- }
- return sb.toString();
- }
- public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- this.doGet(request,response);
- }
- }
- package itcast.web.servlet;
-
-
- import itcast.domain.User;
- import itcast.service.UserService;
- import itcast.service.impl.UserServiceImpl;
- import org.apache.commons.beanutils.BeanUtils;
-
- import javax.servlet.ServletException;
- import javax.servlet.annotation.WebServlet;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import javax.servlet.http.HttpSession;
- import java.io.IOException;
- import java.lang.reflect.InvocationTargetException;
- import java.util.Map;
-
- @WebServlet("/loginServlet")
- public class LoginServlet extends HttpServlet {
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- //1.设置编码
- request.setCharacterEncoding("utf-8");
-
- //2.获取数据
- //2.1获取用户填写验证码
- String verifycode = request.getParameter("verifycode");
-
- //3.验证码校验
- HttpSession session = request.getSession();
- String checkcode_server = (String) session.getAttribute("CHECKCODE_SERVER");
- session.removeAttribute("CHECKCODE_SERVER");//确保验证码一次性
- if(!checkcode_server.equalsIgnoreCase(verifycode)){
- //验证码不正确
- //提示信息
- request.setAttribute("login_msg","验证码错误!");
- //跳转登录页面
- request.getRequestDispatcher("/login.jsp").forward(request,response);
-
- return;
- }
-
- Map
map = request.getParameterMap(); - //4.封装User对象
- User user = new User();
- try {
- BeanUtils.populate(user,map);
- } catch (IllegalAccessException e) {
- e.printStackTrace();
- } catch (InvocationTargetException e) {
- e.printStackTrace();
- }
-
-
- //5.调用Service查询
- UserService service = new UserServiceImpl();
- User loginUser = service.login(user);
- //6.判断是否登录成功
- if(loginUser != null){
- //登录成功
- //将用户存入session
- session.setAttribute("user",loginUser);
- //跳转页面
- response.sendRedirect(request.getContextPath()+"list.jsp");
- }else{
- //登录失败
- //提示信息
- request.setAttribute("login_msg","用户名或密码错误!");
- //跳转登录页面
- request.getRequestDispatcher("login.jsp").forward(request,response);
-
- }
-
-
-
-
- }
-
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- this.doPost(request, response);
- }
- }
登录相关的jsp:
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
-
- html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8"/>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta name="viewport" content="width=device-width, initial-scale=1"/>
- <title>管理员登录title>
-
-
- <link href="css/bootstrap.min.css" rel="stylesheet">
-
- <script src="js/jquery-2.1.0.min.js">script>
-
- <script src="js/bootstrap.min.js">script>
- <script type="text/javascript">
- //切换验证码
- function refreshCode(){
- //1.获取验证码图片对象
- var vcode = document.getElementById("vcode");
-
- //2.设置其src属性,加时间戳
- vcode.src = "${pageContext.request.contextPath}/checkCodeServlet?time="+new Date().getTime();
- }
- script>
- head>
- <body>
- <div class="container" style="width: 400px;">
- <h3 style="text-align: center;">管理员登录h3>
- <form action="${pageContext.request.contextPath}/loginServlet" method="post">
- <div class="form-group">
- <label for="user">用户名:label>
- <input type="text" name="username" class="form-control" id="user" placeholder="请输入用户名"/>
- div>
-
- <div class="form-group">
- <label for="password">密码:label>
- <input type="password" name="password" class="form-control" id="password" placeholder="请输入密码"/>
- div>
-
- <div class="form-inline">
- <label for="vcode">验证码:label>
- <input type="text" name="verifycode" class="form-control" id="verifycode" placeholder="请输入验证码" style="width: 120px;"/>
- <a href="javascript:refreshCode();">
- <img src="${pageContext.request.contextPath}/checkCodeServlet" title="看不清点击刷新" id="vcode"/>
- a>
- div>
- <hr/>
- <div class="form-group" style="text-align: center;">
- <input class="btn btn btn-primary" type="submit" value="登录">
- div>
- form>
-
-
- <c:if test="${!empty login_msg}">
- <div class="alert alert-warning alert-dismissible" role="alert">
- <button type="button" class="close" data-dismiss="alert" >
- <span>×span>
- button>
- <strong>${login_msg}strong>
- div>
- c:if>
- div>
- body>
- <script>
- alert(${login_msg});
- script>
- html>
与登录相关的方法:
dal层:
- @Override
- public User findUserByUsernameAndPassword(String username, String password) {
- try {
- String sql = "select * from user001 where username = ? and password = ?";
- User user = template.queryForObject(sql, new BeanPropertyRowMapper
(User.class), username, password); - return user;
- } catch (Exception e) {
- e.printStackTrace();
- return null;
- }
-
- }
其他的以及增删改查方法,学过三层架构和数据库连接池以及数据库查询的同学应该知道怎么写了。
这次主要讲的是分页查询,并不是数据库端的简单的分页查询,而是能具体体现在web端的分页查询:
呈现的效果如下:

那我们要怎么做呢?
首先要创建一个新的实体类,里面声明跟分页查询有关的变量例如总页码、每页数据等
①.创建pagebean对象(包含总页数、总页码、每页数据等数据)
public class PageBean
private int totalCount; // 总记录数
private int totalPage ; // 总页码
private List
private int currentPage ; //当前页码
private int rows;//每页显示的记录数
……
- package itcast.domain;
-
- import java.util.List;
-
- /**
- * 分页工具对象
- */
- public class PageBean
{ - private int totalCount; // 总记录数
- private int totalPage ; // 总页码
- private List
list ; // 每页的数据 - private int currentPage ; //当前页码
- private int rows;//每页显示的记录数
-
- public int getTotalCount() {
- return totalCount;
- }
-
- public void setTotalCount(int totalCount) {
- this.totalCount = totalCount;
- }
-
- public int getTotalPage() {
- return totalPage;
- }
-
- public void setTotalPage(int totalPage) {
- this.totalPage = totalPage;
- }
-
- public List
getList() { - return list;
- }
-
- public void setList(List
list) { - this.list = list;
- }
-
- public int getCurrentPage() {
- return currentPage;
- }
-
- public void setCurrentPage(int currentPage) {
- this.currentPage = currentPage;
- }
-
- public int getRows() {
- return rows;
- }
-
- public void setRows(int rows) {
- this.rows = rows;
- }
-
- @Override
- public String toString() {
- return "PageBean{" +
- "totalCount=" + totalCount +
- ", totalPage=" + totalPage +
- ", list=" + list +
- ", currentPage=" + currentPage +
- ", rows=" + rows +
- '}';
- }
- }
②.创建servlet工具类:
其中包含:
1.获取参数
String currentPage = request.getParameter("currentPage");//当前页码
String rows = request.getParameter("rows");//每页显示条数
分页条件判断:
if(currentPage == null || "".equals(currentPage)){
currentPage = "1";
}
if(rows == null || "".equals(rows)){
rows = "5";
}
2.获取条件查询参数:
Map
3.调用service查询
UserService service = new UserServiceImpl();
PageBean
System.out.println(pb);
4.将PageBean存入request
request.setAttribute("pb",pb);
request.setAttribute("condition",condition);//将查询条件存入request
//4.转发到list.jsp
request.getRequestDispatcher("/list.jsp").forward(request,response);
- package itcast.web.servlet;
-
-
-
- import itcast.domain.PageBean;
- import itcast.domain.User;
- import itcast.service.UserService;
- import itcast.service.impl.UserServiceImpl;
-
- import javax.servlet.ServletException;
- import javax.servlet.annotation.WebServlet;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import java.io.IOException;
- import java.util.Map;
-
- @WebServlet("/findUserByPageServlet")
- public class FindUserByPageServlet extends HttpServlet {
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- request.setCharacterEncoding("utf-8");
-
- //1.获取参数
- String currentPage = request.getParameter("currentPage");//当前页码
- String rows = request.getParameter("rows");//每页显示条数
-
- if(currentPage == null || "".equals(currentPage)){
-
- currentPage = "1";
- }
-
-
- if(rows == null || "".equals(rows)){
- rows = "5";
- }
-
- //获取条件查询参数
- Map
condition = request.getParameterMap(); -
-
- //2.调用service查询
- UserService service = new UserServiceImpl();
- PageBean
pb = service.findUserByPage(currentPage,rows,condition); -
- System.out.println(pb);
-
- //3.将PageBean存入request
- request.setAttribute("pb",pb);
- request.setAttribute("condition",condition);//将查询条件存入request
- //4.转发到list.jsp
- request.getRequestDispatcher("/list.jsp").forward(request,response);
- }
-
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- this.doPost(request, response);
- }
- }
③相关方法:
bll服务层:
public PageBean
int currentPage = Integer.parseInt(_currentPage);
int rows = Integer.parseInt(_rows);
if(currentPage <=0) {
currentPage = 1;
}
//1.创建空的PageBean对象
PageBean
//2.设置参数
pb.setCurrentPage(currentPage);
pb.setRows(rows);
//3.调用dao查询总记录数
int totalCount = dao.findTotalCount(condition);
pb.setTotalCount(totalCount);
//4.调用dao查询List集合
//计算开始的记录索引
int start = (currentPage - 1) * rows;
List
pb.setList(list);
//5.计算总页码
int totalPage = (totalCount % rows) == 0 ? totalCount/rows : (totalCount/rows) + 1;
pb.setTotalPage(totalPage);
return pb;
}
Dao层:
public int findTotalCount(Map
//1.定义模板初始化sql
String sql = "select count(*) from user001 where 1 = 1 ";
StringBuilder sb = new StringBuilder(sql);
//2.遍历map
Set
//定义参数的集合
List
//排除分页条件参数
if("currentPage".equals(key) || "rows".equals(key)){
continue;
}
//获取value
String value = condition.get(key)[0];
//判断value是否有值
if(value != null && !"".equals(value)){
//有值
sb.append(" and "+key+" like ? ");
params.add("%"+value+"%");//?条件的值
}
}
System.out.println(sb.toString());
System.out.println(params);
return template.queryForObject(sb.toString(),Integer.class,params.toArray());
}
public List
String sql = "select * from user001 WHERE 1 = 1 ";
StringBuilder sb = new StringBuilder(sql);
//2.遍历map
Set
//定义参数的集合
List
for (String key : keySet) {
//排除分页条件参数
if("currentPage".equals(key) || "rows".equals(key)){
continue;
}
//获取value
String value = condition.get(key)[0];
//判断value是否有值
if(value != null && !"".equals(value)){
//有值
sb.append(" and "+key+" like ? ");
params.add("%"+value+"%");//?条件的值
}
}
//添加分页查询
sb.append(" limit ?,? ");
//添加分页查询参数值
params.add(start);
params.add(rows);
sql = sb.toString();
System.out.println(sql);
System.out.println(params);
return template.query(sql,new BeanPropertyRowMapper
}
而查询页面的样式和布局可以从boostrap官网上寻找喜欢的表单样式:
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
-
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
-
- html>
- <html lang="zh-CN">
- <head>
-
- <meta charset="utf-8">
-
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
-
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <title>用户信息管理系统title>
-
-
- <link href="css/bootstrap.min.css" rel="stylesheet">
-
- <script src="js/jquery-2.1.0.min.js">script>
-
- <script src="js/bootstrap.min.js">script>
- <style type="text/css">
- td, th {
- text-align: center;
- }
- style>
-
- <script>
- function deleteUser(id){
- //用户安全提示
- if(confirm("您确定要删除吗?")){
- //访问路径
- location.href="${pageContext.request.contextPath}/delUserServlet?id="+id;
- }
- }
-
- window.onload = function(){
- //给删除选中按钮添加单击事件
- document.getElementById("delSelected").onclick = function(){
- if(confirm("您确定要删除选中条目吗?")){
-
- var flag = false;
- //判断是否有选中条目
- var cbs = document.getElementsByName("uid");
- for (var i = 0; i < cbs.length; i++) {
- if(cbs[i].checked){
- //有一个条目选中了
- flag = true;
- break;
- }
- }
-
- if(flag){//有条目被选中
- //表单提交
- document.getElementById("form").submit();
- }
-
- }
-
- }
- //1.获取第一个cb
- document.getElementById("firstCb").onclick = function(){
- //2.获取下边列表中所有的cb
- var cbs = document.getElementsByName("uid");
- //3.遍历
- for (var i = 0; i < cbs.length; i++) {
- //4.设置这些cbs[i]的checked状态 = firstCb.checked
- cbs[i].checked = this.checked;
-
- }
-
- }
-
-
- }
-
-
- script>
- head>
- <body>
- <div class="container">
- <h3 style="text-align: center">用户信息列表h3>
-
- <div style="float: left;">
-
- <form class="form-inline" action="${pageContext.request.contextPath}/findUserByPageServlet" method="post">
- <div class="form-group">
- <label for="exampleInputName2">姓名label>
- <input type="text" name="name" value="${condition.name[0]}" class="form-control" id="exampleInputName2" >
- div>
- <div class="form-group">
- <label for="exampleInputName3">籍贯label>
- <input type="text" name="address" value="${condition.address[0]}" class="form-control" id="exampleInputName3" >
- div>
-
- <div class="form-group">
- <label for="exampleInputEmail2">邮箱label>
- <input type="text" name="email" value="${condition.email[0]}" class="form-control" id="exampleInputEmail2" >
- div>
- <button type="submit" class="btn btn-default">查询button>
- form>
-
- div>
-
- <div style="float: right;margin: 5px;">
-
- <a class="btn btn-primary" href="${pageContext.request.contextPath}/add.jsp">添加联系人a>
- <a class="btn btn-primary" href="javascript:void(0);" id="delSelected">删除选中a>
-
- div>
- <form id="form" action="${pageContext.request.contextPath}/delSelectedServlet" method="post">
- <table border="1" class="table table-bordered table-hover">
- <tr class="success">
- <th><input type="checkbox" id="firstCb">th>
- <th>编号th>
- <th>姓名th>
- <th>性别th>
- <th>年龄th>
- <th>籍贯th>
- <th>QQth>
- <th>邮箱th>
- <th>操作th>
- tr>
-
- <c:forEach items="${pb.list}" var="user" varStatus="s">
- <tr>
- <td><input type="checkbox" name="uid" value="${user.id}">td>
- <td>${s.count}td>
- <td>${user.name}td>
- <td>${user.gender}td>
- <td>${user.age}td>
- <td>${user.address}td>
- <td>${user.qq}td>
- <td>${user.email}td>
- <td><a class="btn btn-default btn-sm" href="${pageContext.request.contextPath}/findUserServlet?id=${user.id}">修改a>
- <a class="btn btn-default btn-sm" href="javascript:deleteUser(${user.id});">删除a>td>
- tr>
-
- c:forEach>
-
-
- table>
- form>
- <div>
- <nav aria-label="Page navigation">
- <ul class="pagination">
- <c:if test="${pb.currentPage == 1}">
- <li class="disabled">
- c:if>
-
- <c:if test="${pb.currentPage != 1}">
- <li>
- c:if>
-
-
- <a href="${pageContext.request.contextPath}/findUserByPageServlet?currentPage=${pb.currentPage - 1}&rows=5&name=${condition.name[0]}&address=${condition.address[0]}&email=${condition.email[0]}" aria-label="Previous">
- <span aria-hidden="true">«span>
- a>
- li>
-
-
- <c:forEach begin="1" end="${pb.totalPage}" var="i" >
-
-
- <c:if test="${pb.currentPage == i}">
- <li class="active"><a href="${pageContext.request.contextPath}/findUserByPageServlet?currentPage=${i}&rows=5&name=${condition.name[0]}&address=${condition.address[0]}&email=${condition.email[0]}">${i}a>li>
- c:if>
- <c:if test="${pb.currentPage != i}">
- <li><a href="${pageContext.request.contextPath}/findUserByPageServlet?currentPage=${i}&rows=5&name=${condition.name[0]}&address=${condition.address[0]}&email=${condition.email[0]}">${i}a>li>
- c:if>
-
- c:forEach>
-
-
- <li>
- <a href="${pageContext.request.contextPath}/findUserByPageServlet?currentPage=${pb.currentPage + 1}&rows=5&name=${condition.name[0]}&address=${condition.address[0]}&email=${condition.email[0]}" aria-label="Next">
- <span aria-hidden="true">»span>
- a>
- li>
- <span style="font-size: 25px;margin-left: 5px;">
- 共${pb.totalCount}条记录,共${pb.totalPage}页
- span>
-
- ul>
- nav>
-
-
- div>
-
-
- div>
-
-
- body>
- html>
注:
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
此条语句要导入JSTL的jar包。
jstl有什么作用?
1、以一种统一的方式减少了JSP中的Scriptlets代码数量,可以达到程序中没有任何Scriptlest代码
2、将业务封装到JSTL可以很方便的重用。
3、将数据与显示分离。
4、简化了JSP和Web应用程序的开发,并且使得JSP页面的编程风格统一、易于维护。
5、允许JSP设计工具与Web应用程序开发的进一步集成
例如本次综合练习的修改
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- html>
- <html lang="zh-CN">
- <head>
-
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>修改用户title>
-
- <link href="css/bootstrap.min.css" rel="stylesheet">
- <script src="js/jquery-2.1.0.min.js">script>
- <script src="js/bootstrap.min.js">script>
-
- head>
- <body>
- <div class="container" style="width: 400px;">
- <h3 style="text-align: center;">修改联系人h3>
- <form action="${pageContext.request.contextPath}/updateUserServlet" method="post">
-
- <input type="hidden" name="id" value="${user.id}">
-
- <div class="form-group">
- <label for="name">姓名:label>
- <input type="text" class="form-control" id="name" name="name" value="${user.name}" readonly="readonly" placeholder="请输入姓名" />
- div>
-
- <div class="form-group">
- <label>性别:label>
- <c:if test="${user.gender == '男'}">
- <input type="radio" name="gender" value="男" checked />男
- <input type="radio" name="gender" value="女" />女
- c:if>
-
- <c:if test="${user.gender == '女'}">
- <input type="radio" name="gender" value="男" />男
- <input type="radio" name="gender" value="女" checked />女
- c:if>
-
-
- div>
-
- <div class="form-group">
- <label for="age">年龄:label>
- <input type="text" class="form-control" value="${user.age}" id="age" name="age" placeholder="请输入年龄" />
- div>
-
- <div class="form-group">
- <label for="address">籍贯:label>
- <select name="address" id="address" class="form-control" >
- <c:if test="${user.address =='四川'}">
- <option value="陕西" selected>陕西option>
- <option value="北京">北京option>
- <option value="上海">上海option>
- <option value="大理">大理option>
- <option value="四川">四川option>
- c:if>
- <c:if test="${user.address =='大理'}">
- <option value="陕西" selected>陕西option>
- <option value="北京">北京option>
- <option value="上海">上海option>
- <option value="大理">大理option>
- <option value="四川">四川option>
- c:if>
-
- <c:if test="${user.address == '北京'}">
- <option value="陕西" selected>陕西option>
- <option value="四川">四川option>
- <option value="上海">上海option>
- <option value="大理">大理option>
- <option value="北京">北京option>
- c:if>
-
- <c:if test="${user.address == '上海'}">
- <option value="陕西" selected>陕西option>
- <option value="四川">四川option>
- <option value="上海">上海option>
- <option value="大理">大理option>
- <option value="北京">北京option>
- c:if>
- <c:if test="${user.address =='陕西'}">
- <option value="陕西" selected>陕西option>
- <option value="北京">北京option>
- <option value="上海">上海option>
- <option value="大理">大理option>
- <option value="四川">四川option>
- c:if>
- <c:if test="${user.address !=null}">
- <option value="陕西" selected>陕西option>
- <option value="北京">北京option>
- <option value="上海">上海option>
- <option value="大理">大理option>
- <option value="四川">四川option>
- c:if>
- select>
- div>
-
- <div class="form-group">
- <label for="qq">QQ:label>
- <input type="text" id="qq" class="form-control" value="${user.qq}" name="qq" placeholder="请输入QQ号码"/>
- div>
-
- <div class="form-group">
- <label for="email">Email:label>
- <input type="text" id="email" class="form-control" value="${user.email}" name="email" placeholder="请输入邮箱地址"/>
- div>
-
- <div class="form-group" style="text-align: center">
- <input class="btn btn-primary" type="submit" value="提交" />
- <input class="btn btn-default" type="reset" value="重置" />
- <input class="btn btn-default" type="button" value="返回"/>
- div>
- form>
- div>
- body>
- html>
数据:
书写本次综合练习需要的jar包如下:
