0%

从servlet演进到springMVC

2018年2月25日 下午8:08

JavaWeb三大组件(Servlet、Filter、Listener) - CSDN博客

阶段概述:

  1. servlet阶段:将URL请求能够通过web.xml的配置,映射URL到一个具体的servlet类但是他不能映射到方法,所以,在selvet中我们还得通过具体的URL参数去手工敲码,跳向某个方法
  2. 基于servlet的MVC模式实现
    1. 这个主要是想用于和SpringMVC进行比较,就能清晰的知道SpringMVC到底做了什么。
    2. 代码在附录中
  3. SpringMVC牛逼的地方有:
    1. URL直接映射到方法,而不是仅仅是类,并且这个类也不是servlet了,就是一个普通给的类,只不过加上了@controller
    2. controller中操作service对象的方式
      1. 商品管理第四个知识点
    3. 从controller对于的方法执行完之后,跳转到jsp页面的方式
      1. 通过modelAndView
      2. 可以和基于servlet的MVC模式实现对比
    4. 代码实例:
      1. SpringMVC 基础教程 简单入门实例 - CSDN博客

附录:servlet的MVC模式实现

servlet的MVC模式实现目录结构:

EmployeeServlet.java

EmployeeServiceImpl.java

EmployeeService.java:就是接口而已

SuperDaoImpl.java:老师封装好的dao

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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
package com.shanxi.weixin.dao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.shanxi.weixin.dbUtils.DbUtils;

public class SuperDaoImpl implements SuperDao {


@Override
public List<Map<String, Object>> queryForList(String sql) {
List<Map<String,Object>> list = new ArrayList<Map<String, Object>>();
try {
Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
ResultSet rs = sta.executeQuery(sql);
list = rsToList(rs);
DbUtils.close();
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}


@Override
public int batchDelete(String sql, String[] ID) {
Connection conn = DbUtils.getConnection();
try {
PreparedStatement ps = conn.prepareStatement(sql);
if (ID.length>0){
for(int i=0;i<ID.length;i++){
ps.setInt(1,Integer.parseInt(ID[i]));
ps.addBatch();
}
}
ps.executeBatch();
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}


@Override
public List<Map<String, Object>> queryForList(String sql, int[] types, Object[] obj) {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
ResultSet rs = ps.executeQuery();
list = rsToList(rs);
DbUtils.close();

} catch (SQLException e) {
e.printStackTrace();
}

return list;
}

@Override
public Map<String, Object> queryForMap(String sql) {
List<Map<String,Object>> list = new ArrayList<Map<String, Object>>();
try {

Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
ResultSet rs = sta.executeQuery(sql);
list = rsToList(rs);
DbUtils.close();
} catch (SQLException e) {
e.printStackTrace();
}
if(!list.isEmpty()){
return list.get(0);
}
return null;
}
@Override
public Map<String, Object> queryForMap(String sql, int[] types, Object[] obj) {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
ResultSet rs = ps.executeQuery();
list = rsToList(rs);
DbUtils.close();

} catch (SQLException e) {
e.printStackTrace();
}
if(!list.isEmpty()){
return list.get(0);
}
return null;
}

@Override
public int excuteUpdate(String sql) {
try {
Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
int count = sta.executeUpdate(sql);
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

@Override
public int[] deleteDept(String sql1, String sql2) {
try {
int[] count = new int[2];
Connection conn = DbUtils.getConnection();
conn.setAutoCommit(false);
Statement sta = conn.createStatement();
int count1 = sta.executeUpdate(sql1);
count[0] = count1;
int count2 = sta.executeUpdate(sql2);
count[1] = count2;
conn.commit();
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return null;
}

@Override
public int excuteUpdate(String sql, int[] types, Object[] obj) {
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
int count = ps.executeUpdate();
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

@Override
public int queryForCount(String sql) {
try {
Connection conn = DbUtils.getConnection();
Statement sta = conn.createStatement();
ResultSet rs = sta.executeQuery(sql);
int count = 0 ;
while(rs.next()){
count = rs.getInt(1);
}
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

@Override
public int queryForCount(String sql, int[] types, Object[] obj) {
try {
Connection conn = DbUtils.getConnection();
PreparedStatement ps = conn.prepareStatement(sql);
for (int i = 0; i < obj.length; i++) {
switch (types[i]) {
case Types.INTEGER:
ps.setInt(i+1,Integer.parseInt(obj[i].toString()));
break;
case Types.VARCHAR:
ps.setString(i+1,obj[i].toString());
break;
default:
ps.setString(i+1,obj[i].toString());
}
}
ResultSet rs = ps.executeQuery();
int count = 0;
while(rs.next()){
count = rs.getInt(1);
}
DbUtils.close();
return count;
} catch (SQLException e) {
e.printStackTrace();
}
return 0;
}

private List<Map<String, Object>> rsToList(ResultSet rs) {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
try {
while(rs.next()){
Map<String, Object> map = new HashMap<String,Object>();
for (int i = 1; i <= rs.getMetaData().getColumnCount(); i++) {
switch (rs.getMetaData().getColumnType(i)) {
case Types.INTEGER:
map.put(rs.getMetaData().getColumnName(i),rs.getInt(i));
break;
case Types.VARCHAR:
map.put(rs.getMetaData().getColumnName(i),rs.getString(i));
break;
default:
map.put(rs.getMetaData().getColumnName(i),rs.getObject(i));
}
}
list.add(map);
}
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}



}