XMTT 6 years ago
parent
commit
0da9a2f848

+ 2 - 1
src/main/java/com/ekexiu/project/bridge/resource/po/Transducer.java

@ -1,5 +1,6 @@
1 1
package com.ekexiu.project.bridge.resource.po;
2 2

3
import com.ekexiu.project.bridge.base.po.BaseTable;
3 4
import org.jfw.apt.orm.annotation.entry.Column;
4 5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5 6
import org.jfw.apt.orm.annotation.entry.Table;
@ -7,7 +8,7 @@ import org.jfw.apt.orm.core.enums.DE;
7 8

8 9
@PrimaryKey("id")
9 10
@Table(descp="传感器")
10
public class Transducer {
11
public class Transducer implements BaseTable {
11 12
	private String id;
12 13
	private String code;
13 14
	private String deviceId;

+ 15 - 15
src/main/java/com/ekexiu/project/bridge/servlet/VerifyCodeServlet.java

@ -16,7 +16,7 @@ import java.util.Random;
16 16

17 17
public class VerifyCodeServlet extends HttpServlet {
18 18
	/**
19
	 * 
19
	 *
20 20
	 */
21 21
	private static final long serialVersionUID = -384069991394456296L;
22 22

@ -116,22 +116,22 @@ public class VerifyCodeServlet extends HttpServlet {
116 116
		}
117 117
		String val = request.getParameter(QUERY_FLAG);
118 118
		if(val!=null){
119
	        if(null == request.getCharacterEncoding()){
120
	            request.setCharacterEncoding("UTF-8");
121
	            request.setCharacterEncoding("UTF-8");
122
	        }
123
	        response.setContentType("application/json");
124
	        java.io.PrintWriter out = response.getWriter();
125
	        out.write("{\"success\":true,\"data\":");
119
			if(null == request.getCharacterEncoding()){
120
				request.setCharacterEncoding("UTF-8");
121
				request.setCharacterEncoding("UTF-8");
122
			}
123
			response.setContentType("application/json");
124
			java.io.PrintWriter out = response.getWriter();
125
			out.write("{\"success\":true,\"data\":");
126 126
			Long to = (Long)session.getAttribute("TIMEOUT_"+flag);
127 127
			if( val.equals(session.getAttribute(flag)) &&  (to!=null) && (to.longValue()>System.currentTimeMillis())){
128
			     	  out.write("true}");
129
	        }else{
130
	        	  out.write("false}");
131
	        	  session.removeAttribute("TIMEOUT_"+flag);
132
	        	  session.removeAttribute(flag);
133
	        }
134
	        return;
128
				out.write("true}");
129
			}else{
130
				out.write("false}");
131
				session.removeAttribute("TIMEOUT_"+flag);
132
				session.removeAttribute(flag);
133
			}
134
			return;
135 135
		}
136 136
		response.setContentType("image/jpeg");
137 137
		int width = 0, height = 0, len = 0;

+ 3 - 1
src/main/java/com/ekexiu/project/bridge/system/dao/BirdgeDao.java

@ -4,6 +4,7 @@ import com.ekexiu.project.bridge.resource.po.Bridge;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.orm.annotation.dao.DAO;
6 6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
7 8
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
8 9
import org.jfw.apt.orm.annotation.dao.method.Where;
9 10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
@ -22,7 +23,7 @@ import java.sql.SQLException;
22 23
 * Created by TT on 2018/8/8.
23 24
 */
24 25
@DAO
25
public interface BirdgeDao {
26
public interface BridgeDao {
26 27
27 28
    @Insert
28 29
    int insert(Connection con, Bridge bridge)throws SQLException;
@ -30,6 +31,7 @@ public interface BirdgeDao {
30 31
    @UpdateWith
31 32
    @From(Bridge.class)
32 33
    @SetSentence("active = false")
34
    @IncludeFixSet("modifyTime")
33 35
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
34 36
35 37
    @Update

+ 6 - 2
src/main/java/com/ekexiu/project/bridge/system/dao/BridgeServerDao.java

@ -4,6 +4,7 @@ import com.ekexiu.project.bridge.resource.po.BridgeServer;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.orm.annotation.dao.DAO;
6 6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
7 8
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
8 9
import org.jfw.apt.orm.annotation.dao.method.Where;
9 10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
@ -12,6 +13,8 @@ import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
12 13
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
13 14
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
14 15
import org.jfw.apt.orm.annotation.dao.param.Set;
16
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
17
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
15 18
import org.jfw.util.PageQueryResult;
16 19
17 20
import java.sql.Connection;
@ -29,7 +32,8 @@ public interface BridgeServerDao {
29 32
    @UpdateWith
30 33
    @From(BridgeServer.class)
31 34
    @SetSentence("active = '0'")
32
    int logicDelete(Connection con, @Set String modifier, String id)throws SQLException;
35
    @IncludeFixSet("modifyTime")
36
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
33 37
34 38
    @Update
35 39
    int update(Connection con, BridgeServer bridgeServer) throws SQLException;
@ -40,7 +44,7 @@ public interface BridgeServerDao {
40 44
41 45
    @PageSelect
42 46
    @Where("active = '1'")
43
    PageQueryResult<BridgeServer> pqgeQuery(Connection con);
47
    PageQueryResult<BridgeServer> pageQuery(Connection con, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"ID IN (SELECT ID FROM BRIDGE WHERE CODE = ?)"}) String bridgeCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
44 48
}
45 49
46 50

+ 8 - 3
src/main/java/com/ekexiu/project/bridge/system/dao/CollectDeviceDao.java

@ -4,13 +4,17 @@ import com.ekexiu.project.bridge.resource.po.CollectDevice;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.orm.annotation.dao.DAO;
6 6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
7 8
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
8 9
import org.jfw.apt.orm.annotation.dao.method.Where;
9 10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
10 11
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
11 12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
12 14
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
13 15
import org.jfw.apt.orm.annotation.dao.param.Set;
16
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
17
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
14 18
import org.jfw.util.PageQueryResult;
15 19
16 20
import java.sql.Connection;
@ -28,10 +32,11 @@ public interface CollectDeviceDao {
28 32
    @UpdateWith
29 33
    @From(CollectDevice.class)
30 34
    @SetSentence("active = '0'")
35
    @IncludeFixSet("modifyTime")
31 36
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
32 37
33
    @UpdateWith
34
    int update(Connection con, CollectDevice collectDevice)throws SQLException;
38
    @Update
39
    int update(Connection con, CollectDevice collectDevice) throws SQLException;
35 40
36 41
    @SelectOne
37 42
    @Nullable
@ -39,5 +44,5 @@ public interface CollectDeviceDao {
39 44
40 45
    @PageSelect
41 46
    @Where("active = '1'")
42
    PageQueryResult<CollectDevice> pageQuery(Connection con, @Nullable String serverId, @Nullable String code) throws SQLException;
47
    PageQueryResult<CollectDevice> pageQuery(Connection con, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"ID IN (SELECT ID FROM BRIDGE_SERVER WHERE CODE = ?)"}) String serverCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
43 48
}

+ 48 - 0
src/main/java/com/ekexiu/project/bridge/system/dao/TransducerDao.java

@ -0,0 +1,48 @@
1
package com.ekexiu.project.bridge.system.dao;
2
3
import com.ekexiu.project.bridge.resource.po.Transducer;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
8
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
9
import org.jfw.apt.orm.annotation.dao.method.Where;
10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
11
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
14
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
15
import org.jfw.apt.orm.annotation.dao.param.Set;
16
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
17
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
18
import org.jfw.util.PageQueryResult;
19
20
import java.sql.Connection;
21
import java.sql.SQLException;
22
23
/**
24
 * Created by TT on 2018/8/8.
25
 */
26
@DAO
27
public interface TransducerDao {
28
29
    @Insert
30
    int insert(Connection con, Transducer transducer) throws SQLException;
31
32
    @UpdateWith
33
    @From(Transducer.class)
34
    @SetSentence("active = '0'")
35
    @IncludeFixSet("modifyTime")
36
    int logicDelete(Connection con, @Set String modifier, String id) throws SQLException;
37
38
    @Update
39
    int update(Connection con, Transducer transducer) throws SQLException;
40
41
    @SelectOne
42
    @Nullable
43
    Transducer query(Connection con, String id) throws SQLException;
44
45
    @PageSelect
46
    @Where("active = '1'")
47
    PageQueryResult<Transducer> pageQuery(Connection con, @Nullable @SqlColumn(handlerClass = StringHandler.class, value = {"ID IN (SELECT ID FROM COLLECT_DEVICE WHERE CODE = ?)"}) String collectDeviceCode, @Nullable String code, int pageSize, int pageNo) throws SQLException;
48
}

+ 7 - 0
src/main/java/com/ekexiu/project/bridge/system/dao/UserDao.java

@ -1,11 +1,13 @@
1 1
package com.ekexiu.project.bridge.system.dao;
2 2
3
import com.ekexiu.project.bridge.system.po.Notice;
3 4
import com.ekexiu.project.bridge.system.po.User;
4 5
import org.jfw.apt.annotation.Nullable;
5 6
import org.jfw.apt.orm.annotation.dao.DAO;
6 7
import org.jfw.apt.orm.annotation.dao.Dynamic;
7 8
import org.jfw.apt.orm.annotation.dao.method.Exclude;
8 9
import org.jfw.apt.orm.annotation.dao.method.From;
10
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
9 11
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
10 12
import org.jfw.apt.orm.annotation.dao.method.Where;
11 13
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
@ -55,4 +57,9 @@ public interface UserDao {
55 57
    @UpdateWith
56 58
    @From(User.class)
57 59
    int changePw(Connection con, @Set String passwd, String id) throws SQLException;
60
61
    @UpdateWith
62
    @From(Notice.class)
63
    @IncludeFixSet("modifyTime")
64
    int updateNotice(Connection con, @Set String cnt,@Set String modifier) throws SQLException;
58 65
}

+ 45 - 0
src/main/java/com/ekexiu/project/bridge/system/po/Notice.java

@ -0,0 +1,45 @@
1
package com.ekexiu.project.bridge.system.po;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
6
import org.jfw.apt.orm.core.enums.DE;
7
8
/**
9
 * Created by TT on 2018/8/8.
10
 */
11
@Table(descp = "系统公告")
12
public class Notice {
13
14
    private String cnt;
15
    private String modifier;
16
    private String modifyTime;
17
18
19
    @Column(descp="备注",value=DE.Text_de)
20
    public String getCnt() {
21
        return cnt;
22
    }
23
24
    public void setCnt(String cnt) {
25
        this.cnt = cnt;
26
    }
27
28
    @Column(descp="最后修改人ID",value= DE.refid_32)
29
    public String getModifier() {
30
        return modifier;
31
    }
32
33
    public void setModifier(String modifier) {
34
        this.modifier = modifier;
35
    }
36
37
    @Column(descp="最后修改时间(YYYYMMDDHH24MISS),初始值:20000101010101", handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", fixSqlValueWithInsert = "'20000101010101'", fixSqlValueWithUpdate = "TO_CHAR(NOW(),'YYYYMMDDHH24MISS')", insertable = true, nullable = false, queryable = true, renewable = true)
38
    public String getModifyTime() {
39
        return modifyTime;
40
    }
41
42
    public void setModifyTime(String modifyTime) {
43
        this.modifyTime = modifyTime;
44
    }
45
}

+ 16 - 9
src/main/java/com/ekexiu/project/bridge/system/service/DictService.java

@ -1,12 +1,7 @@
1 1
package com.ekexiu.project.bridge.system.service;
2 2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5
import java.util.Collections;
6
import java.util.HashMap;
7
import java.util.LinkedList;
8
import java.util.List;
9

3
import com.ekexiu.project.bridge.system.dao.DictDao;
4
import com.ekexiu.project.bridge.system.po.DictItem;
10 5
import org.jfw.apt.annotation.Autowrie;
11 6
import org.jfw.apt.annotation.Nullable;
12 7
import org.jfw.apt.web.annotation.Path;
@ -15,8 +10,12 @@ import org.jfw.apt.web.annotation.operate.Post;
15 10
import org.jfw.apt.web.annotation.param.AfterCommit;
16 11
import org.jfw.apt.web.annotation.param.JdbcConn;
17 12

18
import com.ekexiu.project.bridge.system.dao.DictDao;
19
import com.ekexiu.project.bridge.system.po.DictItem;
13
import java.sql.Connection;
14
import java.sql.SQLException;
15
import java.util.Collections;
16
import java.util.HashMap;
17
import java.util.LinkedList;
18
import java.util.List;
20 19

21 20
@Path("/dict")
22 21
public class DictService {
@ -26,6 +25,14 @@ public class DictService {
26 25
	@Autowrie
27 26
	private DictDao dictDao;
28 27

28
	public DictDao getDictDao() {
29
		return dictDao;
30
	}
31

32
	public void setDictDao(DictDao dictDao) {
33
		this.dictDao = dictDao;
34
	}
35

29 36
	@Path("/load")
30 37
	@Get
31 38
	public void load(@JdbcConn Connection con) throws SQLException {

+ 405 - 31
src/main/java/com/ekexiu/project/bridge/system/service/SysService.java

@ -1,5 +1,13 @@
1 1
package com.ekexiu.project.bridge.system.service;
2 2
3
import com.ekexiu.project.bridge.resource.po.Bridge;
4
import com.ekexiu.project.bridge.resource.po.BridgeServer;
5
import com.ekexiu.project.bridge.resource.po.CollectDevice;
6
import com.ekexiu.project.bridge.resource.po.Transducer;
7
import com.ekexiu.project.bridge.system.dao.BridgeDao;
8
import com.ekexiu.project.bridge.system.dao.BridgeServerDao;
9
import com.ekexiu.project.bridge.system.dao.CollectDeviceDao;
10
import com.ekexiu.project.bridge.system.dao.TransducerDao;
3 11
import com.ekexiu.project.bridge.system.dao.UserDao;
4 12
import com.ekexiu.project.bridge.system.po.User;
5 13
import com.ekexiu.project.bridge.system.vo.SessionUser;
@ -12,25 +20,78 @@ import org.jfw.apt.web.annotation.method.SetSession;
12 20
import org.jfw.apt.web.annotation.operate.Get;
13 21
import org.jfw.apt.web.annotation.operate.Post;
14 22
import org.jfw.apt.web.annotation.param.JdbcConn;
15
import org.jfw.apt.web.annotation.param.PathVar;
23
import org.jfw.apt.web.annotation.param.Upload;
16 24
import org.jfw.util.PageQueryResult;
17 25
import org.jfw.util.StringUtil;
18 26
import org.jfw.util.exception.JfwBaseException;
27
import org.jfw.util.web.fileupload.Item;
28
import org.jfw.util.web.fileupload.UploadItemIterator;
19 29
30
import java.io.File;
31
import java.io.FileOutputStream;
32
import java.io.InputStream;
33
import java.io.OutputStream;
20 34
import java.sql.Connection;
21 35
import java.sql.SQLException;
36
import java.util.ArrayList;
37
import java.util.LinkedList;
38
import java.util.List;
39
import java.util.concurrent.atomic.AtomicInteger;
22 40
23 41
/**
24 42
 * Created by TT on 2018/8/7.
25 43
 */
26
@Path("/sys")
44
@Path
27 45
public class SysService {
28 46
29 47
    public static final String DEFAULT_PW_STR = StringUtil.md5("123456");
30 48
49
    private static final AtomicInteger FN_IDX = new AtomicInteger(1);
50
51
    private File imgPath;
52
31 53
    @Autowrie
32 54
    private UserDao userDao;
55
    @Autowrie
56
    private BridgeDao bridgeDao;
57
    @Autowrie
58
    private BridgeServerDao bridgeServerDao;
59
    @Autowrie
60
    private CollectDeviceDao collectDeviceDao;
61
    @Autowrie
62
    private TransducerDao transducerDao;
63
64
    public BridgeDao getBridgeDao() {
65
        return bridgeDao;
66
    }
67
68
    public void setBridgeDao(BridgeDao bridgeDao) {
69
        this.bridgeDao = bridgeDao;
70
    }
71
72
    public BridgeServerDao getBridgeServerDao() {
73
        return bridgeServerDao;
74
    }
75
76
    public void setBridgeServerDao(BridgeServerDao bridgeServerDao) {
77
        this.bridgeServerDao = bridgeServerDao;
78
    }
79
80
    public CollectDeviceDao getCollectDeviceDao() {
81
        return collectDeviceDao;
82
    }
83
84
    public void setCollectDeviceDao(CollectDeviceDao collectDeviceDao) {
85
        this.collectDeviceDao = collectDeviceDao;
86
    }
87
88
    public TransducerDao getTransducerDao() {
89
        return transducerDao;
90
    }
33 91
92
    public void setTransducerDao(TransducerDao transducerDao) {
93
        this.transducerDao = transducerDao;
94
    }
34 95
35 96
    public UserDao getUserDao() {
36 97
        return userDao;
@ -40,41 +101,87 @@ public class SysService {
40 101
        this.userDao = userDao;
41 102
    }
42 103
104
    /**
105
     * 上传文件
106
     *
107
     * @param it
108
     * @return
109
     * @throws Exception
110
     */
111
    @Path("/bridge/upload")
112
    @Post
113
    public List<UploadFile> upload(@Upload UploadItemIterator it) throws Exception {
114
        List<UploadFile> ret = new LinkedList<UploadFile>();
115
        try {
116
            while (it.hasNext()) {
117
                Item item = it.next();
118
                if (!item.isFormField()) {
119
                    String name = normalizeFileName(item.getName());
120
                    int index = name.lastIndexOf('.');
121
                    String ext = index >= 0 ? name.substring(index + 1) : "";
122
                    ext = ext.trim();
123
                    long fileLen = 0;
124
                    int len = 0;
125
                    UploadFile uf = this.buildTargetFile(ext);
126
                    uf.setName(name);
127
                    File file = uf.getFn();
128
                    ret.add(uf);
129
                    byte[] buf = new byte[8092];
130
                    OutputStream of = new FileOutputStream(file);
131
                    try {
132
                        InputStream in = item.getInputStream();
133
                        try {
134
                            while ((len = in.read(buf)) >= 0) {
135
                                if (len > 0) {
136
                                    of.write(buf, 0, len);
137
                                    fileLen += len;
138
                                }
139
                            }
140
                            uf.setSize(fileLen);
141
                        } finally {
142
                            in.close();
143
                        }
144
                    } finally {
145
                        of.close();
146
                    }
147
                }
148
            }
149
            return ret;
150
        } catch (Exception e) {
151
            this.remove(ret);
152
            throw e;
153
        } finally {
154
            if (it != null)
155
                it.clean();
156
        }
157
    }
158
159
43 160
    @SetSession("JFW_SESSION_LOGIN_USER=result")
44
    @Path("/login")
161
    @Path("/user/login")
45 162
    @Post
46 163
    public SessionUser login(@JdbcConn Connection con, String account, String pw) throws SQLException {
47 164
        User user = userDao.login(con, account, StringUtil.md5(pw));
48 165
        if (user != null) {
49
            SessionUser sessionUser = new SessionUser();
50
            sessionUser.setAccount(user.getAccount());
51
            sessionUser.setComp(user.getComp());
52
            sessionUser.setEmail(user.getEmail());
53
            sessionUser.setId(user.getId());
54
            sessionUser.setJob(user.getJob());
55
            sessionUser.setName(user.getName());
56
            sessionUser.setPhone(user.getPhone());
57
            sessionUser.setRemark(user.getRemark());
58
            sessionUser.setType(user.getType());
59
            return sessionUser;
166
            return makeSessionUser(user);
60 167
        }
61 168
        return null;
62 169
    }
63 170
64 171
    @Get
65
    @Path
172
    @Path("/user")
66 173
    public SessionUser get(@LoginUser SessionUser user) {
67 174
        return user;
68 175
    }
69 176
70 177
    @Get
71
    @Path("/logout")
178
    @Path("/user/logout")
72 179
    @InvalidSession
73 180
    public void logout() {
74 181
    }
75 182
76 183
    @Post
77
    @Path
184
    @Path("/user/insert")
78 185
    public void insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
79 186
        user.setId(StringUtil.buildUUID());
80 187
        user.setActive(true);
@ -86,46 +193,313 @@ public class SysService {
86 193
    }
87 194
88 195
    @Get
89
    @Path("/id/{id}")
90
    public User query(@JdbcConn Connection con,@PathVar String id)throws SQLException {
91
        return this.userDao.query(con, id);
196
    @Path("/user/qo")
197
    public SessionUser query(@JdbcConn Connection con, String id) throws SQLException {
198
        return makeSessionUser(this.userDao.query(con, id));
92 199
    }
93 200
94 201
    @Post
95
    @Path("/update")
202
    @Path("/user/update")
96 203
    public void update(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, User user) throws SQLException {
97 204
        user.setModifier(sessionUser.getId());
98 205
        this.userDao.update(con, user);
99 206
    }
100 207
101 208
    @Get
102
    @Path("/ban")
209
    @Path("/user/ban")
103 210
    public void ban(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
104 211
        this.userDao.ban(con, sessionUser.getId(), id);
105 212
    }
106 213
107 214
    @Get
108
    @Path("/pq")
109
    public PageQueryResult pageQuery(@JdbcConn Connection con, @Nullable String account, @Nullable String name, @Nullable String comp, int pageSize, int pageNo) throws SQLException {
110
        return this.userDao.pageQuery(con, account == null ? null : "%" + account + "%", name == null ? null : "%" + name + "%", comp == null ? null : "%" + comp + "%", pageSize, pageNo);
215
    @Path("/user/pq")
216
    public PageQueryResult<SessionUser> pageQuery(@JdbcConn Connection con, @Nullable String account, @Nullable String name, @Nullable String comp, int pageSize, int pageNo) throws SQLException {
217
        PageQueryResult<User> pageQueryResult = this.userDao.pageQuery(con, account == null ? null : "%" + account + "%", name == null ? null : "%" + name + "%", comp == null ? null : "%" + comp + "%", pageSize, pageNo);
218
        List<User> users = pageQueryResult.getData();
219
        List<SessionUser> sessionUsers = new ArrayList<>();
220
        if (!users.isEmpty()) {
221
            for (User user : users) {
222
                sessionUsers.add(makeSessionUser(user));
223
            }
224
            PageQueryResult<SessionUser> pageQueryResult1 = new PageQueryResult<>();
225
            pageQueryResult1.setData(sessionUsers);
226
            return pageQueryResult1;
227
        }
228
        return null;
111 229
    }
112 230
113 231
    @Get
114
    @Path("/resetPw")
115
    public void resetPw(@JdbcConn(true) Connection con,String id)throws SQLException {
232
    @Path("/user/resetPw")
233
    public void resetPw(@JdbcConn(true) Connection con, String id) throws SQLException {
116 234
        this.userDao.changePw(con, DEFAULT_PW_STR, id);
117 235
    }
118 236
119 237
    @Post
120
    @Path("/changePw")
121
    public void changePw(@JdbcConn(true) Connection con,String id,String oldPw,String newPw) throws SQLException, JfwBaseException {
238
    @Path("/user/changePw")
239
    public void changePw(@JdbcConn(true) Connection con, String id, String oldPw, String newPw) throws SQLException, JfwBaseException {
122 240
        User user = this.userDao.query(con, id);
123
        if (user!=null&&StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
241
        if (user != null && StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
124 242
            this.userDao.changePw(con, StringUtil.md5(newPw), id);
125
        }else{
243
        } else {
126 244
            throw new JfwBaseException(100001, "用户不存在或密码不匹配");
127 245
        }
128 246
    }
129 247
248
    @Post
249
    @Path("/bridge")
250
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, Bridge bridge) throws SQLException {
251
        String id = StringUtil.buildUUID();
252
        bridge.setId(id);
253
        bridge.setActive(true);
254
        bridge.setCreator(sessionUser.getId());
255
        bridge.setModifier(sessionUser.getId());
256
        this.bridgeDao.insert(con, bridge);
257
        return id;
258
    }
259
260
    @Get
261
    @Path("/bridge/qo")
262
    public Bridge queryBridge(@JdbcConn Connection con, String id) throws SQLException {
263
        return this.bridgeDao.query(con, id);
264
    }
265
266
    @Get
267
    @Path("/bridge/delete")
268
    public void delete(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
269
        this.bridgeDao.logicDelete(con, sessionUser.getId(), id);
270
    }
271
272
    @Post
273
    @Path("/bridge/update")
274
    public void update(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, Bridge bridge) throws SQLException {
275
        bridge.setModifier(sessionUser.getId());
276
        this.bridgeDao.update(con, bridge);
277
    }
278
279
    @Get
280
    @Path("/bridge/pq")
281
    public PageQueryResult<Bridge> pageQuery(@JdbcConn Connection con, @Nullable String name, @Nullable String code, int pageSize, int pageNo) throws SQLException {
282
        return this.bridgeDao.pageQuery(con, name == null ? null : "%" + name + "%", code, pageSize, pageNo);
283
    }
284
285
    @Post
286
    @Path("/bridgeServer")
287
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, BridgeServer bridgeServer) throws SQLException {
288
        String id = StringUtil.buildUUID();
289
        bridgeServer.setId(id);
290
        bridgeServer.setActive(true);
291
        bridgeServer.setCreator(sessionUser.getId());
292
        bridgeServer.setModifier(sessionUser.getId());
293
        this.bridgeServerDao.insert(con, bridgeServer);
294
        return id;
295
    }
296
297
    @Get
298
    @Path("/bridgeServer/qo")
299
    public BridgeServer queryBS(@JdbcConn Connection con, String id) throws SQLException {
300
        return this.bridgeServerDao.query(con, id);
301
    }
302
303
    @Get
304
    @Path("/bridgeServer/pq")
305
    public PageQueryResult<BridgeServer> pageQueryBS(@JdbcConn Connection con, @Nullable String bcode, @Nullable String code, int pageSize, int pageNo) throws SQLException {
306
        return this.bridgeServerDao.pageQuery(con, bcode, code, pageSize, pageNo);
307
    }
308
309
    @Post
310
    @Path("/bridgeServer/update")
311
    public void updateBS(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, BridgeServer bridgeServer) throws SQLException {
312
        bridgeServer.setModifier(sessionUser.getId());
313
        this.bridgeServerDao.update(con, bridgeServer);
314
    }
315
316
    @Get
317
    @Path("/bridgeServer/delete")
318
    public void deleteBS(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser
319
            , String id) throws SQLException {
320
        this.bridgeServerDao.logicDelete(con, sessionUser.getId(), id);
321
    }
322
323
    @Post
324
    @Path("/collectDevice")
325
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, CollectDevice collectDevice) throws SQLException {
326
        String id = StringUtil.buildUUID();
327
        collectDevice.setId(id);
328
        collectDevice.setActive(true);
329
        collectDevice.setCreator(sessionUser.getId());
330
        collectDevice.setModifier(sessionUser.getId());
331
        this.collectDeviceDao.insert(con, collectDevice);
332
        return id;
333
    }
334
335
    @Get
336
    @Path("/collectDevice/qo")
337
    public CollectDevice queryCD(@JdbcConn Connection con, String id) throws SQLException {
338
        return this.collectDeviceDao.query(con, id);
339
    }
340
341
    @Get
342
    @Path("/collectDevice/pq")
343
    public PageQueryResult<CollectDevice> pageQueryCD(@JdbcConn Connection con, @Nullable String scode, @Nullable String code, int pageSize, int pageNo) throws SQLException {
344
        return this.collectDeviceDao.pageQuery(con, scode, code, pageSize, pageNo);
345
    }
346
347
    @Post
348
    @Path("/collectDevice/update")
349
    public void updateCD(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, CollectDevice collectDevice) throws SQLException {
350
        collectDevice.setModifier(sessionUser.getId());
351
        this.collectDeviceDao.update(con, collectDevice);
352
    }
353
354
    @Get
355
    @Path("/collectDevice/delete")
356
    public void deleteCD(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
357
        this.collectDeviceDao.logicDelete(con, sessionUser.getId(), id);
358
    }
359
360
    @Post
361
    @Path("/transducer")
362
    public String insert(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, Transducer transducer) throws SQLException {
363
        String id = StringUtil.buildUUID();
364
        transducer.setId(id);
365
        transducer.setActive(true);
366
        transducer.setCreator(sessionUser.getId());
367
        transducer.setModifier(sessionUser.getId());
368
        this.transducerDao.insert(con, transducer);
369
        return id;
370
    }
371
372
    @Get
373
    @Path("/transducer/qo")
374
    public Transducer queryTransducer(@JdbcConn Connection con, String id) throws SQLException {
375
        return this.transducerDao.query(con, id);
376
    }
377
378
    @Get
379
    @Path("/transducer/pq")
380
    public PageQueryResult<Transducer> pageQueryT(@JdbcConn Connection con, @Nullable String cdCode, @Nullable String code, int pageSize, int pageNo) throws SQLException {
381
        return this.transducerDao.pageQuery(con, cdCode, code, pageSize, pageNo);
382
    }
383
384
    @Post
385
    @Path("/transducer/update")
386
    public void updateTransducer(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, Transducer transducer) throws SQLException {
387
        transducer.setModifier(sessionUser.getId());
388
        this.transducerDao.update(con, transducer);
389
    }
390
391
    @Get
392
    @Path("/transducer/delete")
393
    public void deleteTransducer(@JdbcConn(true) Connection con, @LoginUser SessionUser sessionUser, String id) throws SQLException {
394
        this.transducerDao.logicDelete(con, sessionUser.getId(), id);
395
    }
396
397
    @Post
398
    @Path("/notice")
399
    public void updateNotice(@JdbcConn(true)Connection con,@LoginUser SessionUser sessionUser,String cnt)throws SQLException {
400
        this.userDao.updateNotice(con, cnt, sessionUser.getId());
401
    }
402
403
404
    private void remove(List<UploadFile> list) {
405
        for (UploadFile file : list) {
406
            if (file.fn != null)
407
                file.fn.delete();
408
        }
409
    }
410
411
    private UploadFile buildTargetFile(String ext) {
412
        StringBuilder sb = new StringBuilder();
413
        sb.append(System.currentTimeMillis() / (1000 * 60 * 60 * 24));
414
        File path = new File(this.imgPath, sb.toString());
415
        if (!path.exists()) {
416
            synchronized (this) {
417
                if (!path.mkdirs())
418
                    throw new RuntimeException("mkdir error[" + path + "]");
419
                FN_IDX.set(1);
420
            }
421
        }
422
        File file;
423
        do {
424
            String fn = FN_IDX.toString();
425
            if (ext.isEmpty()) {
426
                file = new File(path, fn);
427
            } else {
428
                file = new File(path, fn + "." + ext);
429
            }
430
            FN_IDX.incrementAndGet();
431
        } while (file.exists());
432
        sb.append("/").append(file.getName());
433
        UploadFile uf = new UploadFile();
434
        uf.setFn(file);
435
        uf.setUri("/" + sb.toString());
436
        return uf;
437
    }
438
439
    private String normalizeFileName(String fn) {
440
        int index = fn.indexOf('\\');
441
        if (index >= 0) {
442
            fn = fn.substring(fn.lastIndexOf('\\') + 1);
443
        }
444
        index = fn.indexOf('/');
445
        if (index >= 0) {
446
            fn = fn.substring(fn.lastIndexOf('/') + 1);
447
        }
448
        if (fn.length() == 0)
449
            throw new RuntimeException("invalid filename in Multipart/data request");
450
        return fn;
451
    }
452
453
    public static class UploadFile {
454
        private String name;
455
        private String uri;
456
        private long size;
457
        private transient File fn;
458
459
        public File getFn() {
460
            return fn;
461
        }
462
463
        public void setFn(File fn) {
464
            this.fn = fn;
465
        }
466
467
        public String getName() {
468
            return name;
469
        }
470
471
        public void setName(String name) {
472
            this.name = name;
473
        }
474
475
        public String getUri() {
476
            return uri;
477
        }
130 478
479
        public void setUri(String uri) {
480
            this.uri = uri;
481
        }
482
483
        public long getSize() {
484
            return size;
485
        }
486
487
        public void setSize(long size) {
488
            this.size = size;
489
        }
490
    }
491
492
    private static SessionUser makeSessionUser(User user) {
493
        SessionUser sessionUser = new SessionUser();
494
        sessionUser.setAccount(user.getAccount());
495
        sessionUser.setComp(user.getComp());
496
        sessionUser.setEmail(user.getEmail());
497
        sessionUser.setId(user.getId());
498
        sessionUser.setJob(user.getJob());
499
        sessionUser.setName(user.getName());
500
        sessionUser.setPhone(user.getPhone());
501
        sessionUser.setRemark(user.getRemark());
502
        sessionUser.setType(user.getType());
503
        return sessionUser;
504
    }
131 505
}

+ 3 - 1
src/main/resources/project.properties

@ -28,4 +28,6 @@ dataSource.poolPreparedStatements::boolean=true
28 28
#statement池能够同时分配的打开的statements的最大数量
29 29
dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31
dataSource.defaultAutoCommit::boolean=false
31
dataSource.defaultAutoCommit::boolean=false
32
33
com_ekexiu_portal_ware_WareService.imgPath::java.io.File=D:/tmp/data/bridge

+ 2 - 2
src/main/webapp/WEB-INF/web.xml

@ -8,7 +8,7 @@
8 8
		<servlet-class>org.jfw.web.servlet.core.FilenameConfigServlet</servlet-class>
9 9
		<init-param>
10 10
			<param-name>prefixLen</param-name>
11
			<param-value>7</param-value>
11
			<param-value>6</param-value>
12 12
		</init-param>
13 13
		<init-param>
14 14
			<param-name>viewType</param-name>
@ -31,7 +31,7 @@
31 31
	</servlet>
32 32
	<servlet>
33 33
		<servlet-name>wave</servlet-name>
34
		<servlet-class>com.ekxiu.project.bridge.servlet.WaveDataServlet</servlet-class>
34
		<servlet-class>com.ekexiu.project.bridge.servlet.WaveDataServlet</servlet-class>
35 35
		<load-on-startup>3</load-on-startup>
36 36
	</servlet>
37 37
	<servlet-mapping>