Browse Source

资源更新添加是否更新图片的判断。

zzy.zhiyuan.foxmail 8 years ago
parent
commit
f32ada379e
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/main/java/com/ekexiu/portal/service/ResourceService.java

+ 3 - 1
src/main/java/com/ekexiu/portal/service/ResourceService.java

@ -81,7 +81,9 @@ public class ResourceService {
81 81
	@Path
82 82
	public void update(@JdbcConn(true) Connection con, @RequestBody Resource resource, @Nullable String fn) throws SQLException {
83 83
		try {
84
			this.imagesService.insert(con, resource.getResourceId(), fn);
84
			if(null != fn){
85
				this.imagesService.insert(con, resource.getResourceId(), fn);
86
			}
85 87
			this.resourceDao.update(con, resource);
86 88
		} catch (IOException e) {
87 89
			con.rollback();