Parcourir la Source

Merge branch 'master' of http://121.42.53.174:3000/jiapeng/bridge

XMTT 6 ans auparavant
Parent
commit
961009fc6f

+ 1 - 1
src/main/java/com/ekexiu/project/bridge/resource/dao/BridgeDao.java

@ -60,7 +60,7 @@ public interface BridgeDao {
60 60
61 61
    @PageSelect
62 62
    @OrderBy("ORDER BY CODE")
63
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN(SELECT BCODE FROM USER_BRIDGE WHERE UID=?)") String uid, int pageSize, int pageNo) throws SQLException;
63
    PageQueryResult<Bridge> pageQuery(Connection con, @Nullable Boolean active, @SqlColumn(handlerClass = StringHandler.class, value = "ID IN(SELECT BRIDGE FROM USER_BRIDGE WHERE UID=?)") String uid, int pageSize, int pageNo) throws SQLException;
64 64
65 65
    @SelectList
66 66
    @OrderBy("ORDER BY CODE")

+ 4 - 4
src/main/java/com/ekexiu/project/bridge/resource/service/BridgeService.java

@ -164,8 +164,8 @@ public class BridgeService {
164 164
165 165
    @Get
166 166
    @Path("/bridge/byUser")
167
    public PageQueryResult<Bridge> query(@JdbcConn Connection con, String uid, @Nullable Boolean active, int pageSize, int pageNo) throws SQLException {
168
        return this.bridgeDao.pageQuery(con, active, uid, pageSize, pageNo);
167
    public PageQueryResult<Bridge> query(@JdbcConn Connection con, @LoginUser SessionUser user, @Nullable Boolean active, int pageSize, int pageNo) throws SQLException {
168
        return this.bridgeDao.pageQuery(con, active, user.getId(), pageSize, pageNo);
169 169
    }
170 170
171 171
@ -395,9 +395,9 @@ public class BridgeService {
395 395
396 396
    @Get
397 397
    @Path("/all/byUser")
398
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active, String id)throws SQLException {
398
    public Map<String,Object> queryAll(@JdbcConn Connection con,@Nullable Boolean active,@LoginUser SessionUser user)throws SQLException {
399 399
        Map<String, Object> map = new HashMap<>();
400
        List<Bridge> bridges = this.bridgeDao.listQueryByUser(con, active, id);
400
        List<Bridge> bridges = this.bridgeDao.listQueryByUser(con, active, user.getId());
401 401
        String[] bridgeId = new String[bridges.size()];
402 402
        for(int i = 0 ; i < bridges.size() ; ++i) {
403 403
            bridgeId[i] = bridges.get(i).getId();

+ 1 - 4
src/main/java/com/ekexiu/project/bridge/servlet/AlarmDataServlet.java

@ -145,7 +145,6 @@ public class AlarmDataServlet extends HttpServlet {
145 145
											at = at.substring(0, 14);
146 146
											msg.setAlarmTime(at);
147 147
										}
148

149 148
									} else {
150 149
										items.clear();
151 150
										break;
@ -175,7 +174,6 @@ public class AlarmDataServlet extends HttpServlet {
175 174
			in.close();
176 175
		}
177 176
		if (items.size() > 0) {
178

179 177
			Connection con = null;
180 178
			try {
181 179
				con = this.dataSource.getConnection();
@ -215,10 +213,9 @@ public class AlarmDataServlet extends HttpServlet {
215 213
				}
216 214
				if (items.size() > 0) {
217 215
					con.commit();
218
					JfwAppContext.getScheduledExecutorService().equals(new Runnable() {
216
					JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
219 217
						@Override
220 218
						public void run() {
221

222 219
							for (Map.Entry<User, String> entry : notices.entrySet()) {
223 220
								User u = entry.getKey();
224 221
								String to = u.getEmail();

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

@ -171,10 +171,10 @@ public class SysService {
171 171
172 172
	@Post
173 173
	@Path("/changePw")
174
	public void changePw(@JdbcConn(true) Connection con, String id, String oldPw, String newPw) throws SQLException, JfwBaseException {
175
		User user = this.userDao.query(con, id);
174
	public void changePw(@JdbcConn(true) Connection con, @LoginUser SessionUser u, String oldPw, String newPw) throws SQLException, JfwBaseException {
175
		User user = this.userDao.query(con, u.getId());
176 176
		if (user != null && StringUtil.md5(oldPw).equals(StringUtil.md5(user.getPasswd()))) {
177
			this.userDao.changePw(con, StringUtil.md5(newPw), id);
177
			this.userDao.changePw(con, StringUtil.md5(newPw), u.getId());
178 178
		} else {
179 179
			throw new JfwBaseException(100001, "用户不存在或密码不匹配");
180 180
		}