Selaa lähdekoodia

修改资源和图片更新接口。

zzy.zhiyuan.foxmail 8 vuotta sitten
vanhempi
commit
4d95404eed

+ 4 - 0
src/main/java/com/ekexiu/portal/dao/ImageDao.java

26
	@SelectList
26
	@SelectList
27
	public abstract List<Image> query(Connection con) throws SQLException;
27
	public abstract List<Image> query(Connection con) throws SQLException;
28
	
28
	
29
	@SelectOne
30
	@Nullable
31
	public abstract Image queryOne(Connection con, String resourceId) throws SQLException;
32
	
29
	@SelectList
33
	@SelectList
30
	public abstract List<Image> queryRes(Connection con, String resourceId) throws SQLException;
34
	public abstract List<Image> queryRes(Connection con, String resourceId) throws SQLException;
31
	
35
	

+ 107 - 32
src/main/java/com/ekexiu/portal/dao/ResourceDao.java

8
import java.util.Collections;
8
import java.util.Collections;
9
import java.util.List;
9
import java.util.List;
10

10

11
import org.jfw.apt.annotation.Autowrie;
11
import org.jfw.apt.orm.annotation.dao.DAO;
12
import org.jfw.apt.orm.annotation.dao.DAO;
12
import org.jfw.apt.orm.annotation.dao.method.From;
13
import org.jfw.apt.orm.annotation.dao.method.From;
13
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
14
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
14
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
15
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
15
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
16
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
17
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
16
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
18
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
17
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
19
import org.jfw.apt.orm.annotation.dao.param.Set;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
20
import org.jfw.util.PageQueryResult;
19
import org.jfw.util.PageQueryResult;
21

20

21
import com.ekexiu.portal.po.Image;
22
import com.ekexiu.portal.po.Professor;
22
import com.ekexiu.portal.po.Professor;
23
import com.ekexiu.portal.po.Resource;
23
import com.ekexiu.portal.po.Resource;
24
import com.ekexiu.portal.pojo.EditProfessor;
24
import com.ekexiu.portal.pojo.EditProfessor;
25

25

26
@DAO
26
@DAO
27
public abstract class ResourceDao {
27
public abstract class ResourceDao {
28
	@Autowrie
29
	private ImageDao imageDao;
30
	
31
	public ImageDao getImageDao() {
32
		return imageDao;
33
	}
34

35
	public void setImageDao(ImageDao imageDao) {
36
		this.imageDao = imageDao;
37
	}
38

28
	@Insert
39
	@Insert
29
	public abstract int insert(Connection con,Resource resource) throws SQLException;
40
	public abstract int insert(Connection con,Resource resource) throws SQLException;
30
	
41
	
51
	@From(Resource.class)
62
	@From(Resource.class)
52
	public abstract int updateCooperationNotes(Connection con,String resourceId,@Set String cooperationNotes) throws SQLException;
63
	public abstract int updateCooperationNotes(Connection con,String resourceId,@Set String cooperationNotes) throws SQLException;
53
	
64
	
54
	public com.ekexiu.portal.po.Resource query(java.sql.Connection con,java.lang.String resourceId) throws java.sql.SQLException{
65
	public Resource query(Connection con,String resourceId) throws SQLException{
55
        int _m_1 = 1;
66
        List<Image> images = this.imageDao.queryRes(con, resourceId);
67
		int _m_1 = 1;
56
        String sql = "SELECT RESOURCE_ID,RESOURCE_NAME,RESOURCE.SUBJECT,RESOURCE.INDUSTRY,SUPPORTED_SERVICES,RESOURCE.DESCP,PROFESSOR_ID,ASCRIPTION,HOPE_PAY_METHOD,COOPERATION_NOTES,RESOURCE.CREATE_TIME,RESOURCE.MODIFY_TIME,PROFESSOR.NAME FROM RESOURCE LEFT JOIN PROFESSOR ON PROFESSOR_ID = PROFESSOR.ID WHERE RESOURCE_ID = ?";
68
        String sql = "SELECT RESOURCE_ID,RESOURCE_NAME,RESOURCE.SUBJECT,RESOURCE.INDUSTRY,SUPPORTED_SERVICES,RESOURCE.DESCP,PROFESSOR_ID,ASCRIPTION,HOPE_PAY_METHOD,COOPERATION_NOTES,RESOURCE.CREATE_TIME,RESOURCE.MODIFY_TIME,PROFESSOR.NAME FROM RESOURCE LEFT JOIN PROFESSOR ON PROFESSOR_ID = PROFESSOR.ID WHERE RESOURCE_ID = ?";
57
        java.sql.PreparedStatement ps = con.prepareStatement(sql);
69
        PreparedStatement ps = con.prepareStatement(sql);
58
        try{
70
        try{
59
            ps.setString(_m_1++,resourceId);
71
            ps.setString(_m_1++,resourceId);
60
            java.sql.ResultSet rs = ps.executeQuery();
72
            ResultSet rs = ps.executeQuery();
61
            try{
73
            try{
62
                if(rs.next()){
74
                if(rs.next()){
63
                    com.ekexiu.portal.po.Resource _result = new com.ekexiu.portal.po.Resource();
75
                    Resource _result = new Resource();
64
                    _result.setResourceId(rs.getString(1));
76
                    _result.setResourceId(rs.getString(1));
65
                    _result.setResourceName(rs.getString(2));
77
                    _result.setResourceName(rs.getString(2));
66
                    java.lang.String _m_2 = rs.getString(3);
78
                    String _m_2 = rs.getString(3);
67
                    if(rs.wasNull()){
79
                    if(rs.wasNull()){
68
                        _m_2 = null;
80
                        _m_2 = null;
69
                    }
81
                    }
70
                    _result.setSubject(_m_2);
82
                    _result.setSubject(_m_2);
71
                    java.lang.String _m_3 = rs.getString(4);
83
                    String _m_3 = rs.getString(4);
72
                    if(rs.wasNull()){
84
                    if(rs.wasNull()){
73
                        _m_3 = null;
85
                        _m_3 = null;
74
                    }
86
                    }
75
                    _result.setIndustry(_m_3);
87
                    _result.setIndustry(_m_3);
76
                    _result.setSupportedServices(rs.getString(5));
88
                    _result.setSupportedServices(rs.getString(5));
77
                    java.lang.String _m_4 = rs.getString(6);
89
                    String _m_4 = rs.getString(6);
78
                    if(rs.wasNull()){
90
                    if(rs.wasNull()){
79
                        _m_4 = null;
91
                        _m_4 = null;
80
                    }
92
                    }
83
                    professor.setId(rs.getString(7));
95
                    professor.setId(rs.getString(7));
84
                    _result.setAscription(rs.getString(8));
96
                    _result.setAscription(rs.getString(8));
85
                    _result.setHopePayMethod(rs.getString(9));
97
                    _result.setHopePayMethod(rs.getString(9));
86
                    java.lang.String _m_5 = rs.getString(10);
98
                    String _m_5 = rs.getString(10);
87
                    if(rs.wasNull()){
99
                    if(rs.wasNull()){
88
                        _m_5 = null;
100
                        _m_5 = null;
89
                    }
101
                    }
92
                    _result.setModifyTime(rs.getString(12));
104
                    _result.setModifyTime(rs.getString(12));
93
                    professor.setName(rs.getString(13));
105
                    professor.setName(rs.getString(13));
94
                    _result.setProfessor(professor);
106
                    _result.setProfessor(professor);
107
                    _result.setImages(images);
95
                    return _result;
108
                    return _result;
96
                }else{
109
                }else{
97
                    return null;
110
                    return null;
198
                    _obj.setModifyTime(rs.getString(12));
211
                    _obj.setModifyTime(rs.getString(12));
199
                    professor.setName(rs.getString(13));
212
                    professor.setName(rs.getString(13));
200
                    _obj.setProfessor(professor);
213
                    _obj.setProfessor(professor);
214
                    List<Image> images = this.imageDao.queryRes(con, _obj.getResourceId());
215
                    _obj.setImages(images);
201
                    _m_8.add(_obj);
216
                    _m_8.add(_obj);
202
                }
217
                }
203
                return _result;
218
                return _result;
209
        }
224
        }
210
    }
225
    }
211
	
226
	
212
//	public java.util.List<com.ekexiu.portal.po.Resource> query(java.sql.Connection con) throws java.sql.SQLException{
227
//	public List<Resource> query(Connection con) throws SQLException{
213
//        String sql = "SELECT RESOURCE_ID,RESOURCE_NAME,RESOURCE.SUBJECT,RESOURCE.INDUSTRY,SUPPORTED_SERVICES,RESOURCE.DESCP,PROFESSOR_ID,ASCRIPTION,HOPE_PAY_METHOD,COOPERATION_NOTES,RESOURCE.CREATE_TIME,RESOURCE.MODIFY_TIME,PROFESSOR.NAME FROM RESOURCE LEFT JOIN PROFESSOR ON PROFESSOR_ID = PROFESSOR.ID ORDER BY RESOURCE_NAME ";
228
//        String sql = "SELECT RESOURCE_ID,RESOURCE_NAME,RESOURCE.SUBJECT,RESOURCE.INDUSTRY,SUPPORTED_SERVICES,RESOURCE.DESCP,PROFESSOR_ID,ASCRIPTION,HOPE_PAY_METHOD,COOPERATION_NOTES,RESOURCE.CREATE_TIME,RESOURCE.MODIFY_TIME,PROFESSOR.NAME FROM RESOURCE LEFT JOIN PROFESSOR ON PROFESSOR_ID = PROFESSOR.ID ORDER BY RESOURCE_NAME ";
214
//        java.sql.PreparedStatement ps = con.prepareStatement(sql);
229
//        PreparedStatement ps = con.prepareStatement(sql);
215
//        try{
230
//        try{
216
//            java.sql.ResultSet rs = ps.executeQuery();
231
//            ResultSet rs = ps.executeQuery();
217
//            try{
232
//            try{
218
//                java.util.List<com.ekexiu.portal.po.Resource> _result = new java.util.ArrayList<com.ekexiu.portal.po.Resource>();
233
//                List<Resource> _result = new ArrayList<Resource>();
219
//                while(rs.next()){
234
//                while(rs.next()){
220
//                    com.ekexiu.portal.po.Resource _obj =  new com.ekexiu.portal.po.Resource();
235
//                    Resource _obj =  new Resource();
221
//                    _obj.setResourceId(rs.getString(1));
236
//                    _obj.setResourceId(rs.getString(1));
222
//                    _obj.setResourceName(rs.getString(2));
237
//                    _obj.setResourceName(rs.getString(2));
223
//                    String _m_1 = rs.getString(3);
238
//                    String _m_1 = rs.getString(3);
249
//                    _obj.setModifyTime(rs.getString(12));
264
//                    _obj.setModifyTime(rs.getString(12));
250
//                    professor.setName(rs.getString(13));
265
//                    professor.setName(rs.getString(13));
251
//                    _obj.setProfessor(professor);
266
//                    _obj.setProfessor(professor);
267
//                    List<Image> images = this.imageDao.queryRes(con, _obj.getResourceId());
268
//                    _obj.setImages(images);
252
//                    _result.add(_obj);
269
//                    _result.add(_obj);
253
//                }
270
//                }
254
//                return _result;
271
//                return _result;
260
//        }
277
//        }
261
//    }
278
//    }
262
	
279
	
263
	@SelectList
280
	public List<Resource> queryPro(Connection con,String professorId) throws SQLException{
264
	@OrderBy(" ORDER BY CREATE_TIME DESC ")
281
        int _m_1 = 1;
265
	public abstract List<Resource> queryPro(Connection con, String professorId) throws SQLException;
282
        String sql = "SELECT RESOURCE_ID,RESOURCE_NAME,SUBJECT,INDUSTRY,SUPPORTED_SERVICES,DESCP,PROFESSOR_ID,ASCRIPTION,HOPE_PAY_METHOD,COOPERATION_NOTES,CREATE_TIME,MODIFY_TIME FROM RESOURCE WHERE PROFESSOR_ID = ? ORDER BY CREATE_TIME DESC";
283
        PreparedStatement ps = con.prepareStatement(sql);
284
        try{
285
            ps.setString(_m_1++,professorId);
286
            ResultSet rs = ps.executeQuery();
287
            try{
288
                List<Resource> _result = new ArrayList<Resource>();
289
                while(rs.next()){
290
                    Resource _obj =  new Resource();
291
                    _obj.setResourceId(rs.getString(1));
292
                    _obj.setResourceName(rs.getString(2));
293
                    String _m_2 = rs.getString(3);
294
                    if(rs.wasNull()){
295
                        _m_2 = null;
296
                    }
297
                    _obj.setSubject(_m_2);
298
                    String _m_3 = rs.getString(4);
299
                    if(rs.wasNull()){
300
                        _m_3 = null;
301
                    }
302
                    _obj.setIndustry(_m_3);
303
                    _obj.setSupportedServices(rs.getString(5));
304
                    String _m_4 = rs.getString(6);
305
                    if(rs.wasNull()){
306
                        _m_4 = null;
307
                    }
308
                    _obj.setDescp(_m_4);
309
                    _obj.setProfessorId(rs.getString(7));
310
                    String _m_5 = rs.getString(8);
311
                    if(rs.wasNull()){
312
                        _m_5 = null;
313
                    }
314
                    _obj.setAscription(_m_5);
315
                    String _m_6 = rs.getString(9);
316
                    if(rs.wasNull()){
317
                        _m_6 = null;
318
                    }
319
                    _obj.setHopePayMethod(_m_6);
320
                    String _m_7 = rs.getString(10);
321
                    if(rs.wasNull()){
322
                        _m_7 = null;
323
                    }
324
                    _obj.setCooperationNotes(_m_7);
325
                    _obj.setCreateTime(rs.getString(11));
326
                    _obj.setModifyTime(rs.getString(12));
327
                    List<Image> images = this.imageDao.queryRes(con, _obj.getResourceId());
328
                    _obj.setImages(images);
329
                    _result.add(_obj);
330
                }
331
                return _result;
332
            }finally{
333
                try{rs.close();}catch(Exception _m_8){}
334
            }
335
        }finally{
336
            try{ps.close();}catch(Exception _m_9){}
337
        }
338
    }
266
	
339
	
267
	@DeleteWith
340
	@DeleteWith
268
	@From(Resource.class)
341
	@From(Resource.class)
276
	 * @param pageSize 
349
	 * @param pageSize 
277
	 * @param pageNo
350
	 * @param pageNo
278
	 * @return
351
	 * @return
279
	 * @throws java.sql.SQLException
352
	 * @throws SQLException
280
	 */
353
	 */
281
	public org.jfw.util.PageQueryResult<com.ekexiu.portal.po.Resource> queryPage(java.sql.Connection con,java.lang.String key,java.lang.String subject,java.lang.String industry,int pageSize,int pageNo) throws java.sql.SQLException{
354
	public org.jfw.util.PageQueryResult<Resource> queryPage(Connection con,String key,String subject,String industry,int pageSize,int pageNo) throws SQLException{
282
        int _m_1 = 0;
355
        int _m_1 = 0;
283
        org.jfw.util.PageQueryResult<com.ekexiu.portal.po.Resource> _result = new org.jfw.util.PageQueryResult<com.ekexiu.portal.po.Resource>();
356
        org.jfw.util.PageQueryResult<Resource> _result = new org.jfw.util.PageQueryResult<Resource>();
284
        int _m_3 = 1;
357
        int _m_3 = 1;
285
        boolean _m_2 = null == key;
358
        boolean _m_2 = null == key;
286
        boolean _m_4 = null == subject;
359
        boolean _m_4 = null == subject;
353
        if(_m_6.length()>0){
426
        if(_m_6.length()>0){
354
            sql.append(_m_6);
427
            sql.append(_m_6);
355
        }
428
        }
356
        java.sql.PreparedStatement ps = con.prepareStatement(sql.toString());
429
        PreparedStatement ps = con.prepareStatement(sql.toString());
357
        try{
430
        try{
358
            if(!_m_2){
431
            if(!_m_2){
359
                ps.setString(_m_3++,key);
432
                ps.setString(_m_3++,key);
374
                ps.setString(_m_3++,industry);
447
                ps.setString(_m_3++,industry);
375
            }
448
            }
376
            _result.setPageSize(pageSize);
449
            _result.setPageSize(pageSize);
377
            java.sql.ResultSet _pageRs = ps.executeQuery();
450
            ResultSet _pageRs = ps.executeQuery();
378
            try{
451
            try{
379
                _pageRs.next();
452
                _pageRs.next();
380
                _m_1 = _pageRs.getInt(1);
453
                _m_1 = _pageRs.getInt(1);
387
        _result.setTotal(_m_1);
460
        _result.setTotal(_m_1);
388
        if(0== _m_1){
461
        if(0== _m_1){
389
            _result.setPageNo(1);
462
            _result.setPageNo(1);
390
            _result.setData(java.util.Collections.<com.ekexiu.portal.po.Resource>emptyList());
463
            _result.setData(Collections.<Resource>emptyList());
391
            return _result;
464
            return _result;
392
        }
465
        }
393
        _m_3 = 1;
466
        _m_3 = 1;
440
            if(!_m_5){
513
            if(!_m_5){
441
                ps.setString(_m_3++,industry);
514
                ps.setString(_m_3++,industry);
442
            }
515
            }
443
            java.sql.ResultSet rs = ps.executeQuery();
516
            ResultSet rs = ps.executeQuery();
444
            try{
517
            try{
445
                java.util.List<com.ekexiu.portal.po.Resource> _m_13 = new java.util.ArrayList<com.ekexiu.portal.po.Resource>();
518
                List<Resource> _m_13 = new ArrayList<Resource>();
446
                _result.setData(_m_13);
519
                _result.setData(_m_13);
447
                int _m_14 = 0;
520
                int _m_14 = 0;
448
                while((_m_14<pageSize) && rs.next()){
521
                while((_m_14<pageSize) && rs.next()){
449
                    ++_m_14;
522
                    ++_m_14;
450
                    com.ekexiu.portal.po.Resource _obj =  new com.ekexiu.portal.po.Resource();
523
                    Resource _obj =  new Resource();
451
                    _obj.setResourceId(rs.getString(1));
524
                    _obj.setResourceId(rs.getString(1));
452
                    _obj.setResourceName(rs.getString(2));
525
                    _obj.setResourceName(rs.getString(2));
453
                    java.lang.String _m_15 = rs.getString(3);
526
                    String _m_15 = rs.getString(3);
454
                    if(rs.wasNull()){
527
                    if(rs.wasNull()){
455
                        _m_15 = null;
528
                        _m_15 = null;
456
                    }
529
                    }
457
                    _obj.setSubject(_m_15);
530
                    _obj.setSubject(_m_15);
458
                    java.lang.String _m_16 = rs.getString(4);
531
                    String _m_16 = rs.getString(4);
459
                    if(rs.wasNull()){
532
                    if(rs.wasNull()){
460
                        _m_16 = null;
533
                        _m_16 = null;
461
                    }
534
                    }
462
                    _obj.setIndustry(_m_16);
535
                    _obj.setIndustry(_m_16);
463
                    _obj.setSupportedServices(rs.getString(5));
536
                    _obj.setSupportedServices(rs.getString(5));
464
                    java.lang.String _m_17 = rs.getString(6);
537
                    String _m_17 = rs.getString(6);
465
                    if(rs.wasNull()){
538
                    if(rs.wasNull()){
466
                        _m_17 = null;
539
                        _m_17 = null;
467
                    }
540
                    }
470
                    professor.setId(rs.getString(7));
543
                    professor.setId(rs.getString(7));
471
                    _obj.setAscription(rs.getString(8));
544
                    _obj.setAscription(rs.getString(8));
472
                    _obj.setHopePayMethod(rs.getString(9));
545
                    _obj.setHopePayMethod(rs.getString(9));
473
                    java.lang.String _m_18 = rs.getString(10);
546
                    String _m_18 = rs.getString(10);
474
                    if(rs.wasNull()){
547
                    if(rs.wasNull()){
475
                        _m_18 = null;
548
                        _m_18 = null;
476
                    }
549
                    }
483
                    professor.setAddress(rs.getString(16));
556
                    professor.setAddress(rs.getString(16));
484
                    professor.setOrgName(rs.getString(17));
557
                    professor.setOrgName(rs.getString(17));
485
                    _obj.setProfessor(professor);
558
                    _obj.setProfessor(professor);
559
                    List<Image> images = this.imageDao.queryRes(con, _obj.getResourceId());
560
                    _obj.setImages(images);
486
                    _m_13.add(_obj);
561
                    _m_13.add(_obj);
487
                }
562
                }
488
                return _result;
563
                return _result;

+ 20 - 9
src/main/java/com/ekexiu/portal/service/ImagesService.java

14
import org.jfw.apt.web.annotation.operate.Delete;
14
import org.jfw.apt.web.annotation.operate.Delete;
15
import org.jfw.apt.web.annotation.operate.Get;
15
import org.jfw.apt.web.annotation.operate.Get;
16
import org.jfw.apt.web.annotation.operate.Post;
16
import org.jfw.apt.web.annotation.operate.Post;
17
import org.jfw.apt.web.annotation.operate.Put;
17
import org.jfw.apt.web.annotation.param.JdbcConn;
18
import org.jfw.apt.web.annotation.param.JdbcConn;
18
import org.jfw.apt.web.annotation.param.PathVar;
19
import org.jfw.apt.web.annotation.param.PathVar;
19
import org.jfw.util.StringUtil;
20
import org.jfw.util.StringUtil;
62
		} finally {
63
		} finally {
63
			in.close();
64
			in.close();
64
		}
65
		}
65
		String imageSrc = this.resourcePath + "/" + resourceId + ".jpg";
66
		Image image1 = this.imageDao.queryOne(con, resourceId);
66
		System.out.println(imageSrc);
67
		if(null == image1){
67
		Image image = new Image();
68
			Image image = new Image();
68
		String imageId = StringUtil.buildUUID();
69
			String imageId = StringUtil.buildUUID();
69
		image.setImageId(imageId);
70
			image.setImageId(imageId);
70
		image.setImageSrc(imageSrc);
71
			String imageSrc = this.resourcePath + "/" + resourceId + ".jpg";
71
		image.setResourceId(resourceId);
72
			image.setImageSrc(imageSrc);
72
		this.imageDao.insert(con, image);
73
			image.setResourceId(resourceId);
73
		return imageId;
74
			this.imageDao.insert(con, image);
75
			return imageId;
76
		} else {
77
			return null;
78
		}
79
	}
80
	
81
	@Put
82
	@Path
83
	public void update(@JdbcConn(true) Connection con, String resourceId) throws SQLException{
84
		
74
	}
85
	}
75
	
86
	
76
	@Get
87
	@Get

+ 8 - 4
src/main/java/com/ekexiu/portal/service/ResourceService.java

79

79

80
	@Put
80
	@Put
81
	@Path
81
	@Path
82
	public void update(@JdbcConn(true) Connection con, @RequestBody Resource resource, @Nullable String professorId) throws SQLException {
82
	public void update(@JdbcConn(true) Connection con, @RequestBody Resource resource, @Nullable String fn) throws SQLException {
83
		if (resource.getProfessorId() != null)
83
		try {
84
			resource.setProfessorId(professorId);
84
			this.imagesService.insert(con, resource.getResourceId(), fn);
85
		this.resourceDao.update(con, resource);
85
			this.resourceDao.update(con, resource);
86
		} catch (IOException e) {
87
			con.rollback();
88
			e.printStackTrace();
89
		}
86
	}
90
	}
87

91

88
	@Get
92
	@Get