2023.3.10每日总结

web项目实现mysql增删改查并从前端页面操作

 

1.看下各个包下面的文件,我上一篇文章已经说过了,这里对上一章有一部分重复的

2.User.java是数据库元素写的一个类,代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.hqyj.wj.model;
//用户信息表
public class User {
     private int id;
     private String name;
     private String birthday;
//   public User(int id,String name,String birthday){
//       this.id=id;
//       this.name=name;
//       this.birthday=birthday;
//   }
    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 getBirthday() {
        return birthday;
    }
    public void setBirthday(String birthday) {
        this.birthday = birthday;
    }
}

 3.UserDaoInf是一个接口实现数据库的增删查改方法,代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.hqyj.wj.dao.inf;
import java.util.List;
import com.hqyj.wj.model.User;
/**
 * 数据访问层的接口定义数据接口的方法
 *
 */
public interface UserDaoInf {
    //定义一个查询方法
    List<User> search();<br>     //定义数据库的插入
    int insert(User user);<br>    //定义跟新数据库
    int update(User user);<br>     //通过名字删除数据元素
    int delete(String name);
     
}

4.UserDao实现UserDaoInf接口,并 连接数据库

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
package com.hqyj.wj.dao;
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
 
import com.hqyj.wj.dao.inf.UserDaoInf;
import com.hqyj.wj.model.User;
 
/**
 *
 * @author wl 数据访问接口
 */
public class UserDao implements UserDaoInf {
    // 数据访问数据库的连接对象
    protected Connection con = null;
    // 预编译你写的sql语句
    protected PreparedStatement ps = null;
    // 查询预编译的sql语句
    protected ResultSet rs = null;
 
    // 获取数据库链接
    @SuppressWarnings("finally")
    public Connection getCon() {
        try {
            // 加载mysql驱动
            Class.forName("com.mysql.jdbc.Driver");
            // 获取数据库链接
            con = DriverManager.getConnection(
                    "jdbc:mysql://127.0.0.1:3306/image?characterEncoding=utf8",
                    "root""root");
            System.out.println("链接成功");
            return con;
        catch (Exception e) {
            System.out.println("链接失败" + e.getMessage());
            e.printStackTrace();
            return null;
        }
 
    }
 
    /**
     * 查询方法
     */
 
    public List<User> search() {<br>                //定义一个列表接收数据库数据
        List<User> list = new ArrayList<User>();
        try {
            // 定义一个sql语句
            // String
            // sql="SELECT a.id as 序号,a.salary as '薪水',b.`name` as '姓名'  from salary a LEFT JOIN `user` b on a.u_id=b.id";
            String sql = "SELECT * from user";
            // 获取数据库连接
            con = getCon();
            // 预编译sql语句
            ps = con.prepareStatement(sql);
            // 把编译出来的结果集装载到ResultSet对象里面
                  rs=ps.executeQuery();
            // 取出ResultSet里的结果集装载到数据模型里
            while (rs.next()) {
                User user = new User();
                user.setName(rs.getString("name"));
                user.setBirthday(rs.getString("birthday"));
                user.setId(Integer.parseInt(rs.getString("id")));
                list.add(user);
            }
        catch (Exception e) {
            System.out.println("查询错误" + e.getMessage());
        finally {
            try {
                rs.close();
                ps.close();
                con.close();
            catch (Exception e2) {
                e2.printStackTrace();
            }
        }
 
        return list;
    }
 
    public int insert(User user) {
   
        int i=0;
        try {
            // 定义一个sql语句
            // String
            // sql="SELECT a.id as 序号,a.salary as '薪水',b.`name` as '姓名'  from salary a LEFT JOIN `user` b on a.u_id=b.id";
            String sql = "insert into user(name,birthday) values(?,?)";
            // 获取数据库连接
            con = getCon();
            // 预编译sql语句
            ps = con.prepareStatement(sql);
            ps.setString(1, user.getName());
            ps.setString(2, user.getBirthday());
             
            i=ps.executeUpdate();
 
        catch (Exception e) {
            System.out.println("查询错误" + e.getMessage());
        finally {
            try {
                 
                ps.close();
                con.close();
            catch (Exception e2) {
                e2.printStackTrace();
            }
        }
       
        return i;
    }
   //跟新信息
    public int update(User user) {
        int i=0;
        try {
            // 定义一个sql语句
            // String
            // sql="SELECT a.id as 序号,a.salary as '薪水',b.`name` as '姓名'  from salary a LEFT JOIN `user` b on a.u_id=b.id";
            String sql = "update user set name='" + user.getName() +"' where id='" + user.getId() + "'";
            // 获取数据库连接
            con = getCon();
            // 预编译sql语句
            ps = con.prepareStatement(sql);
            i=ps.executeUpdate();
 
        catch (Exception e) {
            System.out.println("查询错误" + e.getMessage());
        finally {
            try {
                 
                ps.close();
                con.close();
            catch (Exception e2) {
                e2.printStackTrace();
            }
        }
        return i;
    }
 
    public int delete(String name) {
        int i=0;
        try {
            // 定义一个sql语句
            // String
            // sql="SELECT a.id as 序号,a.salary as '薪水',b.`name` as '姓名'  from salary a LEFT JOIN `user` b on a.u_id=b.id";
            String sql = "delete from user where name='"+name+"'";
            // 获取数据库连接
            con = getCon();
            // 预编译sql语句
            ps = con.prepareStatement(sql);
            i=ps.executeUpdate();
 
        catch (Exception e) {
            System.out.println("查询错误" + e.getMessage());
        finally {
            try {
             
                ps.close();
                con.close();
            catch (Exception e2) {
                e2.printStackTrace();
            }
        }
        return i;
    }
 
}

5.UserServiceInf也是对数据库的增删改查方法和获取前端数据对数据库的增删改查操作方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hqyj.wj.service.inf;
 
import java.io.PrintWriter;
import java.util.List;
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import com.hqyj.wj.model.User;
 
public interface UserServiceInf {
         
    List<User> search();
    int insert(User user);
    int update(User user);
    int delete(String name);<br>     //里面用ajax获取前端来的数据,并操作数据库的方法
    public void ss(HttpServletRequest request,HttpServletResponse response,PrintWriter out);
}

6.UserService实现UserService接口

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package com.hqyj.wj.service;
 
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.util.List;
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import net.sf.json.JSONArray;
 
import com.hqyj.wj.dao.UserDao;
import com.hqyj.wj.dao.inf.UserDaoInf;
import com.hqyj.wj.model.User;
import com.hqyj.wj.service.inf.UserServiceInf;
 
/**
 * 逻辑服务层实现类
 */
public class UserService implements UserServiceInf {
    UserDaoInf us = new UserDao();
 
    public List<User> search() {
              //返回的是 UserDao里面的search()方法
        return us.search();
    }
 
    public int insert(User user) {<br>              //调用了UserDao()里的insert()方法
        int i = us.insert(user);
        return i;
    }
 
    public int update(User user) {
        // TODO Auto-generated method stub
        int i = us.update(user);
 
        return i;
    }
 
    public int delete(String name) {
        int i = us.delete(name);
        return i;
    }
 
    public void ss(HttpServletRequest request, HttpServletResponse response,
            PrintWriter out) {
 
        // serverInder是从前端获取的数,目的是为了区分是增删改查的那个操作<br>                //request.getParameter()是获取拼在url地址栏下的值
        int serverInder = Integer.parseInt(request.getParameter("serverIndex"));<br>                //实现查询-----------------------
        if (serverInder == 1) {
            List<User> list = search();
            // 把list数据解析成前端页面能读取的数据
            JSONArray json = JSONArray.fromObject(list);
            out.print(json.toString());
        }
        // 现实插入---------------------------
        if (serverInder == 2) {
            String name = request.getParameter("name");
            String birthday = request.getParameter("birthday");
            User user = new User();
            try {<br>                                //解决从前端传到服务器(数据库)乱码问题
                name = new String(name.getBytes("ISO-8859-1"), "UTF-8");
            catch (UnsupportedEncodingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            try {
                birthday = new String(birthday.getBytes("ISO-8859-1"), "UTF-8");
            catch (UnsupportedEncodingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            user.setName(name);
            user.setBirthday(birthday);
            int i = insert(user);
            if (i == 1) {
                out.print("插入数据成功");
                System.out.println("插入数据成功");
            else {
                out.print("插入数据失败");
                System.out.println("插入数据失败");
            }
 
        }
 
        // 实现删除
        if (serverInder == 3) {
            String name = request.getParameter("name");
            try {
                name = new String(name.getBytes("ISO-8859-1"), "UTF-8");
            catch (UnsupportedEncodingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            int i = delete(name);
            if (i == 1) {
                out.print("删除数据成功");
                System.out.println("删除数据成功");
            else {
                out.print("删除数据失败" + i);
                System.out.println("删除数据失败" + i);
            }
        }
 
        // 实现更新
        if (serverInder == 4) {
            User user = new User();
            int id = Integer.parseInt(request.getParameter("id"));
            String name = request.getParameter("name");
            String birthday = request.getParameter("birthday");
            try {
                birthday = new String(birthday.getBytes("ISO-8859-1"), "UTF-8");
            catch (UnsupportedEncodingException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }
            try {
                name = new String(name.getBytes("ISO-8859-1"), "UTF-8");
            catch (UnsupportedEncodingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            user.setId(id);
            user.setName(name);
            user.setBirthday(birthday);
 
            int i = update(user);
            if (i == 1) {
                out.print("更改数据成功");
                System.out.println("更改数据成功");
            else {
                out.print("更改数据失败" + i);
                System.out.println("更改数据失败" + i);
            }
             
             
        }
    }
 
}

7.controller控制器是调用UserService里面的方法,实现对前端页面操作数据库

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.hqyj.wj.controller;
 
import java.io.IOException;
import java.io.PrintWriter;
 
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
import net.sf.json.JSONArray;
 
import com.hqyj.wj.service.*;
import com.hqyj.wj.service.inf.*;
import com.hqyj.wj.model.*;
 
import java.util.List;
import java.util.ArrayList;
 
public class OneServlet extends HttpServlet {
 
    public OneServlet() {
        super();
    }
 
    public void destroy() {
        super.destroy(); // Just puts "destroy" string in log
        // Put your code here
    }
  //doget对应的是ajax的$.get()方法
  //request是装载请求数据
 //response响应数据到前端对象
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
            //解决中文乱码的问题
        request.setCharacterEncoding("utf-8");
        response.setCharacterEncoding("utf-8");
        //在服务器端设置允许在其他域名下访问,及响应类型、响应头设置
        //这三句解决的是跨域问题
        response.setHeader("Access-Control-Allow-Origin""*");
        response.setHeader("Access-Control-Allow-Methods","POST");
        response.setHeader("Access-Control-Allow-Headers","x-requested-with,content-type");
          //响应的文本格式
        response.setContentType("text/html");
        //获取响应的输出对象
        PrintWriter out = response.getWriter();
         
         
        UserServiceInf service=new UserService();
         
        String num = request.getParameter("serverIndex");
         
        service.ss(request,response,out);
         
         
        //这里全部拿到UserService的ss()方法里了
        //实现查询----------------------
        /*int serverInder=Integer.parseInt(request.getParameter("serverIndex"));
        if(serverInder==1){
            List<User> list=service.search();
            //把list数据解析成前端页面能读取的数据
            JSONArray json=JSONArray.fromObject(list);
            out.print(json.toString());
        }
        //现实插入---------------------------
        if(serverInder==2){
            String name=request.getParameter("name");
            String birthday=request.getParameter("birthday");
           User user=new User();
           name=new String(name.getBytes("ISO-8859-1"),"UTF-8");
           birthday=new String(birthday.getBytes("ISO-8859-1"),"UTF-8");
           user.setName(name);
           user.setBirthday(birthday);
           int i=service.insert(user);
           if(i==1){
               out.print("插入数据成功");
               System.out.println("插入数据成功");
           }else{
               out.print("插入数据失败");
               System.out.println("插入数据失败");
           }
             
        }*/
        out.flush();
        out.close();
    }
      //doget对应的是ajax的$.post()方法
    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
 
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();
         
        out.flush();
        out.close();
    }
 
    public void init() throws ServletException {
        // Put your code here
    }
 
}

8.前端实现html代码 

 

复制代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ajax获取集合</title>
<script src="../js/jquery-3.1.1.min.js"></script>
</head>
<body>
    <table>
        <thead>
            <tr>
                <th>id</th>
                <th>姓名</th>
                <th>生日</th>
            </tr>
        </thead>
        <tbody>
        </tbody>
    </table>
    名字:<input type="text" placeholder="请输入姓名" id="name">
    生日:年<select>
    <option>1992</option>
    <option>1993</option>
    <option>1994</option>
    <option>1995</option>
    </select>
    月<select>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
    </select>
    日<select>
    <option>2</option>
    <option>12</option>
    <option>22</option>
    <option>23</option>
    </select>
    <button>点击获取数据</button>
    <button>点击插入数据</button><br>
    请输入删除的名字:<input type="text" id="removename">
    <button>点击删除数据</button><br>
    请输入需要修改的id号:<input type="text" id="updateid"><br>
    请输入需要修改后的名字:名字:<input type="text" placeholder="请输入姓名" id="updatename"><br>
    请输入需要修改的后生日:生日:年<select>
    <option>1992</option>
    <option>1993</option>
    <option>1994</option>
    <option>1995</option>
    </select>
    月<select>
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
    </select>
    日<select>
    <option>2</option>
    <option>12</option>
    <option>22</option>
    <option>23</option>
    </select><br>
    <button>点击跟新数据</button>
    
    <script>
    $(function(){
        var str;
//serverIndex区分增删改查的变量 var serverIndex; //点击查看数据 $("button").eq(0).click(function(){ var str; serverIndex=1;
//{serverIndex:serverIndex}是拼在地址栏上的,从后端获取他的值 $.get("http://localhost:8080/jquery/servlet/OneServlet",{serverIndex:serverIndex},function(data){ console.log(data); var num=eval(data); for(var i=0;i<num.length;i++) { str+=" <tr> <td>"+num[i].id+"</td> <td>"+num[i].name+"</td> <td>"+num[i].birthday+"</td></tr>"; } $("tbody").html(str); }) }) //点击插入数据 $("button").eq(1).click(function(){ //获取输入名字的值 serverIndex=2; var name=$("#name").val(); var year=$("select:eq(0) option:selected").val(); var mouth=$("select:eq(1) option:selected").val(); var day=$("select:eq(2) option:selected").val(); var birthday=year+"/"+mouth+"/"+day; console.log(birthday); $.get("http://localhost:8080/jquery/servlet/OneServlet",{serverIndex:serverIndex,name:name,birthday:birthday},function(data){ console.log(data); }) }) //点击删除数据 $("button").eq(2).click(function(){ //获取输入名字的值 serverIndex=3; var name=$("#removename").val(); $.get("http://localhost:8080/jquery/servlet/OneServlet",{serverIndex:serverIndex,name:name},function(data){ console.log(data); }) }) //点击跟新数据 $("button").eq(3).click(function(){ //获取输入名字的值 serverIndex=4; var id=$("#updateid").val(); var name=$("#updatename").val(); var year=$("select:eq(3) option:selected").val(); var mouth=$("select:eq(4) option:selected").val(); var day=$("select:eq(5) option:selected").val(); var birthday=year+"/"+mouth+"/"+day; $.get("http://localhost:8080/jquery/servlet/OneServlet",{serverIndex:serverIndex,name:name,id:id,birthday:birthday},function(data){ console.log(data); }) }) }) </script> </body> </html>
复制代码
posted @ 2023-03-10 21:56  与孤独对酌  阅读(20)  评论(0)    收藏  举报