ソースを参照

Merge branch 'banner'

XMTT 7 年 前
コミット
acc65d15c3

+ 5 - 0
pom.xml

@ -107,6 +107,11 @@
107 107
			<artifactId>slf4j-log4j12</artifactId>
108 108
			<version>1.7.21</version>
109 109
		</dependency>
110
		<dependency>
111
			<groupId>org.freemarker</groupId>
112
			<artifactId>freemarker</artifactId>
113
			<version>2.3.26-incubating</version>
114
		</dependency>
110 115
	</dependencies>
111 116
	<build>
112 117
		<resources>

+ 9 - 0
src/main/java/com/ekexiu/console/system/dao/ArticleDao.java

@ -6,6 +6,7 @@ import org.jfw.apt.annotation.Nullable;
6 6
import org.jfw.apt.orm.annotation.dao.Batch;
7 7
import org.jfw.apt.orm.annotation.dao.Column;
8 8
import org.jfw.apt.orm.annotation.dao.DAO;
9
import org.jfw.apt.orm.annotation.dao.method.Exclude;
9 10
import org.jfw.apt.orm.annotation.dao.method.From;
10 11
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
11 12
import org.jfw.apt.orm.annotation.dao.method.Where;
@ -39,11 +40,13 @@ public interface ArticleDao {
39 40
    @PageQuery
40 41
    @OrderBy(" ORDER BY publish_time DESC NULLS LAST")
41 42
    @Where("status='1'")
43
    @Exclude("articleContent")
42 44
    PageQueryResult<ArticleInfo> queryByTime(Connection con, @Nullable @Like String articleTitle, @SqlColumn(value = {"(p.name is null or p.name like ?)", "(o.name is null or o.name like ?)"}, handlerClass = StringHandler.class) String name, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
43 45
44 46
    @PageQuery
45 47
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
46 48
    @Where("status='1'")
49
    @Exclude("articleContent")
47 50
    PageQueryResult<ArticleInfo> queryByPV(Connection con, @Nullable @Like String articleTitle, @SqlColumn(value = {"(p.name is null or p.name like ?)", "(o.name is null or o.name like ?)"}, handlerClass = StringHandler.class) String name, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
48 51
49 52
    @Batch
@ -67,4 +70,10 @@ public interface ArticleDao {
67 70
    @UpdateWith
68 71
    @From(Article.class)
69 72
    int updateSubject(Connection con, String articleId, @Set String subject) throws SQLException;
73
74
    @Nullable
75
    @QueryVal
76
    @Column(handlerClass = StringHandler.class, value = "article_img")
77
    @From(Article.class)
78
    String queryImagePath(Connection con, String articleId) throws SQLException;
70 79
}

+ 2 - 2
src/main/java/com/ekexiu/console/system/dao/AuthApplyDao.java

@ -71,7 +71,7 @@ public abstract class AuthApplyDao {
71 71
    }
72 72
73 73
    @QueryList
74
    @OrderBy("ORDER BY CREATE_TIME")
74
    @OrderBy("ORDER BY CREATE_TIME DESC")
75 75
    public abstract List<AuthApplyInfo> queryInfo(Connection con, Integer applyType) throws SQLException;
76 76
77 77
    @QueryOne
@ -79,7 +79,7 @@ public abstract class AuthApplyDao {
79 79
    public abstract AuthApplyInfo queryInfo(Connection con, String authApplyId) throws SQLException;
80 80
81 81
    @QueryList
82
    @OrderBy("ORDER BY CREATE_TIME")
82
    @OrderBy("ORDER BY CREATE_TIME DESC")
83 83
    public abstract List<OrgApplyInfo> queryOrgInfo(Connection con, Integer applyType)throws SQLException;
84 84
85 85
    @QueryOne

+ 48 - 0
src/main/java/com/ekexiu/console/system/dao/DiscoverBannerDao.java

@ -0,0 +1,48 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.DiscoverBanner;
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.OrderBy;
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.*;
11
import org.jfw.apt.orm.annotation.dao.param.Like;
12
import org.jfw.util.PageQueryResult;
13
14
import java.sql.Connection;
15
import java.sql.SQLException;
16
17
/**
18
 * Created by TT on 2017/8/25.
19
 */
20
@DAO
21
public interface DiscoverBannerDao {
22
23
    @Nullable
24
    @SelectOne
25
    DiscoverBanner query(Connection con, long id) throws SQLException;
26
27
    @Update
28
    int update(Connection con, DiscoverBanner discoverBanner) throws SQLException;
29
30
    @InsertAndGenKey(value = "id")
31
    long insert(Connection con, DiscoverBanner discoverBanner) throws SQLException;
32
33
    @PageQuery
34
    @OrderBy(" ORDER BY location, create_time DESC")
35
    PageQueryResult<DiscoverBanner> query(Connection con, @Nullable @Like String title, int pageSize, int pageNo) throws SQLException;
36
37
    @UpdateWith
38
    @From(DiscoverBanner.class)
39
    @SetSentence("end_time = TO_CHAR(NOW(),'YYYYMMDDHH24MISS') ")
40
    @Where("begin_time is not null and end_time is null")
41
    int end(Connection con)throws SQLException;
42
43
    @UpdateWith
44
    @From(DiscoverBanner.class)
45
    @SetSentence("location = null")
46
    @Where("location is not null")
47
    int clearLocation(Connection con) throws SQLException;
48
}

+ 3 - 0
src/main/java/com/ekexiu/console/system/dao/PpaperDao.java

@ -4,6 +4,7 @@ import com.ekexiu.console.system.po.Ppaper;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.orm.annotation.dao.Column;
6 6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.Exclude;
7 8
import org.jfw.apt.orm.annotation.dao.method.From;
8 9
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
9 10
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
@ -35,10 +36,12 @@ public interface PpaperDao {
35 36
36 37
    @PageQuery
37 38
    @OrderBy(" ORDER BY create_time DESC NULLS LAST")
39
    @Exclude("summary")
38 40
    PageQueryResult<Ppaper> queryByTime(Connection con, @Nullable @Like String name, @Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
39 41
40 42
    @PageQuery
41 43
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
44
    @Exclude("summary")
42 45
    PageQueryResult<Ppaper> queryByPV(Connection con, @Nullable @Like String name,@Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
43 46
44 47
    @UpdateWith

+ 3 - 0
src/main/java/com/ekexiu/console/system/dao/PpatentDao.java

@ -4,6 +4,7 @@ import com.ekexiu.console.system.po.Ppatent;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.orm.annotation.dao.Column;
6 6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.Exclude;
7 8
import org.jfw.apt.orm.annotation.dao.method.From;
8 9
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
9 10
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
@ -35,10 +36,12 @@ public interface PpatentDao {
35 36
36 37
    @PageQuery
37 38
    @OrderBy(" ORDER BY create_time DESC NULLS LAST")
39
    @Exclude("summary")
38 40
    PageQueryResult<Ppatent> queryByTime(Connection con, @Nullable @Like String name, @Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
39 41
40 42
    @PageQuery
41 43
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
44
    @Exclude("summary")
42 45
    PageQueryResult<Ppatent> queryByPV(Connection con, @Nullable @Like String name,@Nullable @Like String authors, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
43 46
44 47
    @UpdateWith

+ 3 - 0
src/main/java/com/ekexiu/console/system/dao/ResourceDao.java

@ -6,6 +6,7 @@ import org.jfw.apt.annotation.Nullable;
6 6
import org.jfw.apt.orm.annotation.dao.Batch;
7 7
import org.jfw.apt.orm.annotation.dao.Column;
8 8
import org.jfw.apt.orm.annotation.dao.DAO;
9
import org.jfw.apt.orm.annotation.dao.method.Exclude;
9 10
import org.jfw.apt.orm.annotation.dao.method.From;
10 11
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
11 12
import org.jfw.apt.orm.annotation.dao.method.Where;
@ -39,11 +40,13 @@ public interface ResourceDao {
39 40
    @PageQuery
40 41
    @OrderBy(" ORDER BY publish_time DESC NULLS LAST")
41 42
    @Where("status='1'")
43
    @Exclude("descp")
42 44
    PageQueryResult<ResourceInfo> queryByTime(Connection con, @Nullable @Like String resourceName, @SqlColumn(value = {"(p.name is null or p.name like ?)", "(o.name is null or o.name like ?)"}, handlerClass = StringHandler.class) String name, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
43 45
44 46
    @PageQuery
45 47
    @OrderBy(" ORDER BY page_views DESC NULLS LAST")
46 48
    @Where("status='1'")
49
    @Exclude("descp")
47 50
    PageQueryResult<ResourceInfo> queryByPV(Connection con, @Nullable @Like String resourceName,@SqlColumn(value = {"(p.name is null or p.name like ?)", "(o.name is null or o.name like ?)"}, handlerClass = StringHandler.class) String name, @Nullable @GtEq @Alias("publishTime") String bt, @Nullable @Alias("publishTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
48 51
49 52
    @Batch

+ 149 - 0
src/main/java/com/ekexiu/console/system/po/DiscoverBanner.java

@ -0,0 +1,149 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import com.ekexiu.console.basepo.ModifyTimeSupported;
5
import org.jfw.apt.orm.annotation.entry.Column;
6
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
7
import org.jfw.apt.orm.annotation.entry.Table;
8
import org.jfw.apt.orm.core.defaultImpl.LongHandler;
9
import org.jfw.apt.orm.core.enums.DE;
10
11
/**
12
 * Created by TT on 2017/8/25.
13
 */
14
@PrimaryKey("id")
15
@Table
16
public class DiscoverBanner implements CreateTimeSupported, ModifyTimeSupported {
17
    private long id;
18
    private String title;
19
    private int banner;
20
    private String beginTime;
21
    private String endTime;
22
    private long clicks;
23
    private String descp;
24
    private String articleId;
25
    private String modifyTime;
26
    private String modifier;
27
    private String createTime;
28
    private String creator;
29
    private Integer location;
30
31
    @Column(DE.bigSerial)
32
    public long getId() {
33
        return id;
34
    }
35
36
    public void setId(long id) {
37
        this.id = id;
38
    }
39
40
    @Column(DE.Text_de)
41
    public String getTitle() {
42
        return title;
43
    }
44
45
    public void setTitle(String title) {
46
        this.title = title;
47
    }
48
49
    @Column(DE.int_de)
50
    public int getBanner() {
51
        return banner;
52
    }
53
54
    public void setBanner(int banner) {
55
        this.banner = banner;
56
    }
57
58
    @Column(DE.Text_de)
59
    public String getBeginTime() {
60
        return beginTime;
61
    }
62
63
    public void setBeginTime(String beginTime) {
64
        this.beginTime = beginTime;
65
    }
66
67
    @Column(DE.Text_de)
68
    public String getEndTime() {
69
        return endTime;
70
    }
71
72
    public void setEndTime(String endTime) {
73
        this.endTime = endTime;
74
    }
75
76
    @Column(handlerClass = LongHandler.class, dbType = "BIGINT", fixSqlValueWithInsert = "0", insertable = true, renewable = false, nullable = false, queryable = true)
77
    public long getClicks() {
78
        return clicks;
79
    }
80
81
    public void setClicks(long clicks) {
82
        this.clicks = clicks;
83
    }
84
85
    @Column(DE.Text_de)
86
    public String getDescp() {
87
        return descp;
88
    }
89
90
    public void setDescp(String descp) {
91
        this.descp = descp;
92
    }
93
94
    @Column(DE.Text_de)
95
    public String getArticleId() {
96
        return articleId;
97
    }
98
99
    public void setArticleId(String articleId) {
100
        this.articleId = articleId;
101
    }
102
103
    @Column(DE.Text_de)
104
    public String getModifier() {
105
        return modifier;
106
    }
107
108
    public void setModifier(String modifier) {
109
        this.modifier = modifier;
110
    }
111
112
    @Column(DE.Text_de)
113
    public String getCreator() {
114
        return creator;
115
    }
116
117
    public void setCreator(String creator) {
118
        this.creator = creator;
119
    }
120
121
    @Column(DE.Int_de)
122
    public Integer getLocation() {
123
        return location;
124
    }
125
126
    public void setLocation(Integer location) {
127
        this.location = location;
128
    }
129
130
    @Override
131
    public String getModifyTime() {
132
        return this.modifyTime;
133
    }
134
135
    @Override
136
    public void setModifyTime(String modifyTime) {
137
        this.modifyTime = modifyTime;
138
    }
139
140
    @Override
141
    public String getCreateTime() {
142
        return this.createTime;
143
    }
144
145
    @Override
146
    public void setCreateTime(String createTime) {
147
        this.createTime = createTime;
148
    }
149
}

+ 1 - 1
src/main/java/com/ekexiu/console/system/service/ArticleService.java

@ -81,7 +81,7 @@ public class ArticleService {
81 81
82 82
    @Post
83 83
    @Path("/subject")
84
    public void updateSubject(@JdbcConn(true) Connection con,String articleId,@Nullable String subject) throws SQLException {
84
    public void updateSubject(@JdbcConn(true) Connection con, String articleId, @Nullable String subject) throws SQLException {
85 85
        this.articleDao.updateSubject(con, articleId, subject);
86 86
        this.keyWordService.refreshArticle(con, articleId, subject);
87 87
    }

+ 362 - 0
src/main/java/com/ekexiu/console/system/service/DiscoverBannerService.java

@ -0,0 +1,362 @@
1
2
package com.ekexiu.console.system.service;
3
4
import com.ekexiu.console.system.dao.ArticleDao;
5
import com.ekexiu.console.system.dao.DiscoverBannerDao;
6
import com.ekexiu.console.system.po.DiscoverBanner;
7
import com.ekexiu.console.system.vo.ConsoleAuthUser;
8
import freemarker.cache.StringTemplateLoader;
9
import freemarker.template.Configuration;
10
import freemarker.template.TemplateException;
11
import org.jfw.apt.annotation.Autowrie;
12
import org.jfw.apt.annotation.DefaultValue;
13
import org.jfw.apt.annotation.Nullable;
14
import org.jfw.apt.web.annotation.LoginUser;
15
import org.jfw.apt.web.annotation.Path;
16
import org.jfw.apt.web.annotation.operate.Get;
17
import org.jfw.apt.web.annotation.operate.Post;
18
import org.jfw.apt.web.annotation.param.JdbcConn;
19
import org.jfw.apt.web.annotation.param.PathVar;
20
import org.jfw.apt.web.annotation.param.RequestParam;
21
import org.jfw.util.DateUtil;
22
import org.jfw.util.PageQueryResult;
23
24
import java.io.File;
25
import java.io.IOException;
26
import java.sql.Connection;
27
import java.sql.SQLException;
28
import java.util.ArrayList;
29
import java.util.HashMap;
30
import java.util.Map;
31
import java.util.Objects;
32
33
/**
34
 * Created by TT on 2017/8/25.
35
 */
36
@Path("/disBanner")
37
public class DiscoverBannerService {
38
39
    private File generatePath;
40
41
    //private Configuration cfg = new Configuration(Configuration.VERSION_2_3_26);
42
43
    private String templatePc = "<ul id=\"slide-list\" class=\"slide-list floatL\">\n" +
44
            "    <li class=\"slide-item slide-item-active\" data-id=\"${banner[0].articleId}\" data-col=\"${banner[0].bannerId}\">\n" +
45
            "        <a href=\"articalShow.html?articleId=${banner[0].articleId}\" target=\"_blank\" style=\"background-image:url('/data/article/${banner[0].image}');\">\n" +
46
            "            <p class=\"title\">${banner[0].title}</p>\n" +
47
            "        </a>\n" +
48
            "    </li>\n" +
49
            "    <li class=\"slide-item\" data-id=\"${banner[1].articleId}\" data-col=\"${banner[1].bannerId}\">\n" +
50
            "        <a href=\"articalShow.html?articleId=${banner[1].articleId}\" target=\"_blank\" style=\"background-image:url('/data/article/${banner[1].image}');\">\n" +
51
            "            <p class=\"title\">${banner[1].title}</p>\n" +
52
            "        </a>\n" +
53
            "    </li>\n" +
54
            "    <li class=\"slide-item\" data-id=\"${banner[2].articleId}\" data-col=\"${banner[2].bannerId}\">\n" +
55
            "        <a href=\"articalShow.html?articleId=${banner[2].articleId}\" target=\"_blank\" style=\"background-image:url('/data/article/${banner[2].image}');\">\n" +
56
            "            <p class=\"title\">${banner[2].title}</p>\n" +
57
            "        </a>\n" +
58
            "    </li>\n" +
59
            "    <li class=\"slide-item\" data-id=\"${banner[3].articleId}\" data-col=\"${banner[3].bannerId}\">\n" +
60
            "        <a href=\"articalShow.html?articleId=${banner[3].articleId}\" target=\"_blank\" style=\"background-image:url('/data/article/${banner[3].image}');\">\n" +
61
            "            <p class=\"title\">${banner[3].title}</p>\n" +
62
            "        </a>\n" +
63
            "    </li>\n" +
64
            "    <li class=\"slide-item\" data-id=\"${banner[4].articleId}\" data-col=\"${banner[4].bannerId}\">\n" +
65
            "        <a href=\"articalShow.html?articleId=${banner[4].articleId}\" target=\"_blank\" style=\"background-image:url('/data/article/${banner[4].image}');\">\n" +
66
            "            <p class=\"title\">${banner[4].title}</p>\n" +
67
            "        </a>\n" +
68
            "    </li>\n" +
69
            "</ul>\n" +
70
            "<ul id=\"slide-tab\" class=\"slide-tab floatR\">\n" +
71
            "    <li class=\"slide-tab-item slide-tab-item-active\">\n" +
72
            "        ${banner[0].banner}\n" +
73
            "    </li>\n" +
74
            "    <li class=\"slide-tab-item\">\n" +
75
            "        ${banner[1].banner}\n" +
76
            "    </li>\n" +
77
            "    <li class=\"slide-tab-item\">\n" +
78
            "        ${banner[2].banner}\n" +
79
            "    </li>\n" +
80
            "    <li class=\"slide-tab-item\">\n" +
81
            "        ${banner[3].banner}\n" +
82
            "    </li>\n" +
83
            "    <li class=\"slide-tab-item\">\n" +
84
            "        ${banner[4].banner}\n" +
85
            "    </li>\n" +
86
            "</ul>";
87
    private String templateApp = "<div class=\"mui-slider-group mui-slider-loop\">\n" +
88
            "\n" +
89
            "    <div class=\"mui-slider-item mui-slider-item-duplicate\" data-id=\"${banner[4].articleId}\" col-id=\"${banner[4].bannerId}\">\n" +
90
            "        <a href=\"#\" style=\"background-image:url('http://www.ekexiu.com/data/article/${banner[4].image}');\">\n" +
91
            "            <p class=\"mui-slider-title\">${banner[4].title}</p>\n" +
92
            "        </a>\n" +
93
            "    </div>\n" +
94
            "\n" +
95
            "    <#list banner as banner>\n" +
96
            "        <div class=\"mui-slider-item\" data-id=\"${banner.articleId}\" col-id=\"${banner.bannerId}\">\n" +
97
            "            <a href=\"#\" style=\"background-image:url('http://www.ekexiu.com/data/article/${banner.image}');\">\n" +
98
            "                <p class=\"mui-slider-title\">${banner.title}</p>\n" +
99
            "            </a>\n" +
100
            "        </div>\n" +
101
            "    </#list>\n" +
102
            "\n" +
103
            "    <div class=\"mui-slider-item mui-slider-item-duplicate\" data-id=\"${banner[0].articleId}\" col-id=\"${banner[0].bannerId}\">\n" +
104
            "        <a href=\"#\" style=\"background-image:url('http://www.ekexiu.com/data/article/${banner[0].image}');\">\n" +
105
            "            <p class=\"mui-slider-title \">${banner[0].title}</p>\n" +
106
            "        </a>\n" +
107
            "    </div>\n" +
108
            "\n" +
109
            "</div>\n" +
110
            "<div class=\"mui-slider-indicator\">\n" +
111
            "    <div class=\"mui-indicator mui-active\"></div>\n" +
112
            "    <div class=\"mui-indicator\"></div>\n" +
113
            "    <div class=\"mui-indicator\"></div>\n" +
114
            "    <div class=\"mui-indicator\"></div>\n" +
115
            "    <div class=\"mui-indicator\"></div>\n" +
116
            "</div>";
117
    @Autowrie
118
    private DiscoverBannerDao discoverBannerDao;
119
    @Autowrie
120
    private ImageService imageService;
121
    @Autowrie
122
    private ArticleDao articleDao;
123
    @Autowrie
124
    private TemplateService templateService;
125
126
    public DiscoverBannerDao getDiscoverBannerDao() {
127
        return discoverBannerDao;
128
    }
129
130
    public void setDiscoverBannerDao(DiscoverBannerDao discoverBannerDao) {
131
        this.discoverBannerDao = discoverBannerDao;
132
    }
133
134
    public ImageService getImageService() {
135
        return imageService;
136
    }
137
138
    public void setImageService(ImageService imageService) {
139
        this.imageService = imageService;
140
    }
141
142
    public ArticleDao getArticleDao() {
143
        return articleDao;
144
    }
145
146
    public void setArticleDao(ArticleDao articleDao) {
147
        this.articleDao = articleDao;
148
    }
149
150
    public TemplateService getTemplateService() {
151
        return templateService;
152
    }
153
154
    public void setTemplateService(TemplateService templateService) {
155
        this.templateService = templateService;
156
    }
157
158
    public File getGeneratePath() {
159
        return generatePath;
160
    }
161
162
    public void setGeneratePath(File generatePath) {
163
        this.generatePath = generatePath;
164
    }
165
166
    //public File getSource() {
167
    //    return source;
168
    //}
169
170
    //public void setSource(File source) {
171
    //    this.source = source;
172
    //    try {
173
    //        this.cfg.setDirectoryForTemplateLoading(source);
174
    //    } catch (IOException e) {
175
    //        this.source = null;
176
    //        this.cfg.setTemplateLoader(new TemplateLoader() {
177
    //            @Override
178
    //            public Reader getReader(Object templateSource, String encoding) throws IOException {
179
    //                StringReader reader = new StringReader("TemplateService'source is invalid dir,so "+templateSource.toString()+" can't read");
180
    //                return reader;
181
    //            }
182
    //
183
    //            @Override
184
    //            public long getLastModified(Object templateSource) {
185
    //                return 0;
186
    //            }
187
    //
188
    //            @Override
189
    //            public Object findTemplateSource(String name) throws IOException {
190
    //                return name;
191
    //            }
192
    //
193
    //            @Override
194
    //            public void closeTemplateSource(Object templateSource) throws IOException {
195
    //            }
196
    //        });
197
    //    }
198
    //    cfg.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
199
    //}
200
201
    //public void genCnt(String templateName,File dest,Map<String,Object> root) throws IOException, TemplateException {
202
    //    if(dest.exists()){
203
    //        if(!dest.delete()){
204
    //            throw new IOException("delete file["+dest.getAbsolutePath()+"] error");
205
    //        }
206
    //    }
207
    //    Template template = this.cfg.getTemplate(templateName,"UTF-8");
208
    //    OutputStream out = new FileOutputStream(dest);
209
    //    try {
210
    //        template.process(root, new OutputStreamWriter(out, ConstData.UTF8));
211
    //        out.flush();
212
    //    } finally {
213
    //        out.close();
214
    //    }
215
    //}
216
217
    @Path
218
    @Post
219
    public void insert(@JdbcConn(true) Connection con,@RequestParam(excludeFields = {"createTime", "modifyTime", "id"}) DiscoverBanner discoverBanner,@LoginUser ConsoleAuthUser user,@Nullable String fn) throws SQLException, IOException {
220
        discoverBanner.setCreator(user.getId());
221
        long id = this.discoverBannerDao.insert(con, discoverBanner);
222
        if (fn != null) {
223
            this.imageService.saveBannerImage(id, fn);
224
        }
225
    }
226
227
    @Path("/id/{id}")
228
    @Get
229
    public DiscoverBanner query(@JdbcConn Connection con,@PathVar long id)throws SQLException {
230
        return this.discoverBannerDao.query(con, id);
231
    }
232
233
    @Path("/update")
234
    @Post
235
    public void update(@JdbcConn(true) Connection con, DiscoverBanner banner,@Nullable String fn) throws SQLException, IOException {
236
        this.discoverBannerDao.update(con, banner);
237
        this.imageService.saveBannerImage(banner.getId(), fn);
238
    }
239
240
    @Path("/pq")
241
    @Get
242
    public PageQueryResult<DiscoverBanner> pageQuery(@JdbcConn Connection con, @Nullable String title, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
243
        return this.discoverBannerDao.query(con,title == null ? null : "%" + title + "%",pageSize,pageNo);
244
    }
245
246
    @Path("/putUp")
247
    @Post
248
    public void putOn(@JdbcConn(true) Connection con, Long id1, Long id2, Long id3, Long id4, Long id5, @LoginUser ConsoleAuthUser user) throws SQLException {
249
250
        //this.setSource(new File("D:/tmp/banner"));
251
        StringTemplateLoader stringLoader = new StringTemplateLoader();
252
        stringLoader.putTemplate("slideTab.html", templatePc);
253
        stringLoader.putTemplate("appfound.html", templateApp);
254
        Configuration cfg = templateService.getCfg();
255
        cfg.setTemplateLoader(stringLoader);
256
        this.discoverBannerDao.end(con);
257
        this.discoverBannerDao.clearLocation(con);
258
        ArrayList<Banner> banners = new ArrayList<>();
259
        queryId(con, id1, user.getId(), 1, banners);
260
        queryId(con, id2, user.getId(), 2, banners);
261
        queryId(con, id3, user.getId(), 3, banners);
262
        queryId(con, id4, user.getId(), 4, banners);
263
        queryId(con, id5, user.getId(), 5, banners);
264
        Map<String, Object> root = new HashMap<String, Object>();
265
        root.put("banner", banners);
266
        try {
267
            //this.genCnt("slideTab.html", new File(generatePath+"/col_banner.html"), root);
268
            //this.genCnt("appfound.html", new File(generatePath+"/col_bannerApp.html"), root);
269
            templateService.genCnt(cfg,"slideTab.html", new File(generatePath+"/col_banner.html"), root);
270
            templateService.genCnt(cfg,"appfound.html", new File(generatePath+"/col_bannerApp.html"), root);
271
        } catch (IOException | TemplateException e) {
272
            e.printStackTrace();
273
        }
274
    }
275
276
    private void queryId(Connection con, Long id, String userId, int location, ArrayList<Banner> banners) throws SQLException {
277
        DiscoverBanner discoverBanner = this.discoverBannerDao.query(con, id);
278
        discoverBanner.setBeginTime(DateUtil.formatDateTime(System.currentTimeMillis()));
279
        discoverBanner.setEndTime(null);
280
        discoverBanner.setModifier(userId);
281
        discoverBanner.setLocation(location);
282
        this.discoverBannerDao.update(con, discoverBanner);
283
        Banner b = new Banner();
284
        b.setArticleId(discoverBanner.getArticleId());
285
        String image = this.articleDao.queryImagePath(con, discoverBanner.getArticleId());
286
        b.setImage(image);
287
        b.setBanner(dictBanner(discoverBanner.getBanner()));
288
        b.setTitle(discoverBanner.getTitle());
289
        b.setBannerId(id);
290
        banners.add(b);
291
    }
292
293
    private String dictBanner(int banner) {
294
        if (Objects.equals(banner, 1) || Objects.equals(banner, 2)) {
295
            return "原创";
296
        } else if (Objects.equals(banner, 3)) {
297
            return "前沿";
298
        } else if (Objects.equals(banner, 4)) {
299
            return "经验";
300
        } else if (Objects.equals(banner, 5)) {
301
            return "检测";
302
        } else if (Objects.equals(banner, 6)) {
303
            return "会议";
304
        } else if (Objects.equals(banner, 7)) {
305
            return "访谈";
306
        } else if (Objects.equals(banner, 8)) {
307
            return "招聘";
308
        } else if (Objects.equals(banner, 9)) {
309
            return "新闻";
310
        } else {
311
            return "未设定";
312
        }
313
    }
314
    public static class Banner{
315
        private String articleId;
316
        private String image;
317
        private String title;
318
        private String banner;
319
        private Long bannerId;
320
321
        public String getArticleId() {
322
            return articleId;
323
        }
324
325
        public void setArticleId(String articleId) {
326
            this.articleId = articleId;
327
        }
328
329
        public String getImage() {
330
            return image;
331
        }
332
333
        public void setImage(String image) {
334
            this.image = image;
335
        }
336
337
        public String getTitle() {
338
            return title;
339
        }
340
341
        public void setTitle(String title) {
342
            this.title = title;
343
        }
344
345
        public String getBanner() {
346
            return banner;
347
        }
348
349
        public void setBanner(String banner) {
350
            this.banner = banner;
351
        }
352
353
        public long getBannerId() {
354
            return bannerId;
355
        }
356
357
        public void setBannerId(Long bannerId) {
358
            this.bannerId = bannerId;
359
        }
360
    }
361
    
362
}

+ 151 - 0
src/main/java/com/ekexiu/console/system/service/ImageService.java

@ -0,0 +1,151 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.service.Upload;
4
import org.jfw.apt.web.annotation.Path;
5
import org.jfw.util.JpgUtil;
6
import org.jfw.util.io.IoUtil;
7
8
import java.io.*;
9
10
/**
11
 * Created by TT on 2017/8/24.
12
 */
13
@Path("/image")
14
public class ImageService extends Upload {
15
    private File imagePath;
16
    private File tmpPath;
17
    private File orgPath;
18
    private File bannerPath;
19
    private int largeHeadPhotoWidth = 200;
20
    private int largeHeadPhotoHeight = 200;
21
    private int middleHeadPhotoWidth = 200;
22
    private int middleHeadPhotoHeight = 200;
23
    private int smallHeadPhotoWidth = 200;
24
    private int smallHeadPhotoHeight = 200;
25
26
    private File defaultHeadPhoto;
27
    private File defaultOrgLogo;
28
    private File defaultResourcePhoto;
29
30
    private byte[] dli;
31
    private byte[] dmi;
32
    private byte[] dsi;
33
    private byte[] dol;
34
    private byte[] dsl;
35
36
    public File getDefaultHeadPhoto() {
37
        return defaultHeadPhoto;
38
    }
39
40
    public void setDefaultHeadPhoto(File defaultHeadPhoto) {
41
        this.defaultHeadPhoto = defaultHeadPhoto;
42
    }
43
44
    public File getDefaultOrgLogo() {
45
        return defaultOrgLogo;
46
    }
47
48
    public void setDefaultOrgLogo(File defaultOrgLogo) {
49
        this.defaultOrgLogo = defaultOrgLogo;
50
    }
51
52
    public File getDefaultResourcePhoto() {
53
        return defaultResourcePhoto;
54
    }
55
56
    public void setDefaultResourcePhoto(File defaultResourcePhoto) {
57
        this.defaultResourcePhoto = defaultResourcePhoto;
58
    }
59
60
    public File getImagePath() {
61
        return imagePath;
62
    }
63
64
    public void setImagePath(File imagePath) {
65
        this.imagePath = imagePath;
66
        this.orgPath = new File(this.imagePath, "org");
67
        this.bannerPath = new File(this.imagePath, "banner");
68
    }
69
70
    public File getTmpPath() {
71
        return tmpPath;
72
    }
73
74
    public void setTmpPath(File tmpPath) {
75
        this.tmpPath = tmpPath;
76
    }
77
78
    public File getOrgPath() {
79
        return orgPath;
80
    }
81
82
    public void setOrgPath(File orgPath) {
83
        this.orgPath = orgPath;
84
    }
85
86
    public void saveOrgLogo(String id, String fn) throws IOException {
87
        InputStream in = new FileInputStream(new File(this.tmpPath, fn));
88
        try {
89
            IoUtil.copy(in, new FileOutputStream(new File(this.orgPath, id + ".jpg")), false, true);
90
        } finally {
91
            in.close();
92
        }
93
    }
94
95
    public void saveBannerImage(long id, String fn) throws IOException{
96
        InputStream in = new FileInputStream(new File(this.tmpPath, fn));
97
        try {
98
            IoUtil.copy(in,new FileOutputStream(new File(this.bannerPath, id +".jpg")),false,true);
99
        }finally {
100
            in.close();
101
        }
102
    }
103
104
    public void saveDefaultOrgLogo(String id) throws IOException {
105
        this.initDefaultImage();
106
        IoUtil.saveStream(new FileOutputStream(new File(this.orgPath, id + ".jpg")), this.dol, true);
107
    }
108
109
    private byte[] zoomImage(byte[] src, int w, int h) throws IOException {
110
        ByteArrayInputStream in = new ByteArrayInputStream(src);
111
        ByteArrayOutputStream out = new ByteArrayOutputStream();
112
        JpgUtil.zoom(in, out, w, h);
113
        out.flush();
114
        return out.toByteArray();
115
    }
116
117
    private void initDefaultImage() {
118
        if (this.dli != null)
119
            return;
120
        synchronized (this) {
121
            if (this.dli != null)
122
                return;
123
            try {
124
                byte[] dd = IoUtil.readStream(new FileInputStream(this.defaultHeadPhoto), true);
125
                this.dli = this.zoomImage(dd, this.largeHeadPhotoWidth, this.largeHeadPhotoHeight);
126
                this.dmi = this.zoomImage(dd, this.middleHeadPhotoWidth, this.middleHeadPhotoHeight);
127
                this.dsi = this.zoomImage(dd, this.smallHeadPhotoWidth, this.smallHeadPhotoHeight);
128
                this.dol = IoUtil.readStream(new FileInputStream(this.defaultOrgLogo), true);
129
                this.dsl = IoUtil.readStream(new FileInputStream(this.defaultResourcePhoto), true);
130
            } catch (IOException e) {
131
                this.dli = null;
132
                this.dmi = null;
133
                this.dsi = null;
134
                this.dol = null;
135
                this.dsl = null;
136
                throw new RuntimeException("init image error", e);
137
            }
138
        }
139
    }
140
141
    public boolean hasOrgLogo(String id) {
142
        String orgPath = this.orgPath+"/"+id+".jpg";
143
        File file = new File(orgPath);
144
        if(file.exists()){
145
            return true;
146
        }else{
147
            return false;
148
        }
149
    }
150
151
}

+ 15 - 180
src/main/java/com/ekexiu/console/system/service/OrgService.java

@ -20,19 +20,17 @@ import org.jfw.apt.web.annotation.param.JdbcConn;
20 20
import org.jfw.apt.web.annotation.param.PathVar;
21 21
import org.jfw.apt.web.annotation.param.RequestParam;
22 22
import org.jfw.util.DateUtil;
23
import org.jfw.util.JpgUtil;
24 23
import org.jfw.util.PageQueryResult;
25 24
import org.jfw.util.StringUtil;
26 25
import org.jfw.util.exception.JfwBaseException;
27
import org.jfw.util.io.IoUtil;
28 26

29
import java.io.*;
27
import java.io.IOException;
30 28
import java.sql.Connection;
31 29
import java.sql.SQLException;
32 30
import java.util.Objects;
33 31

34 32
@Path("/sys/org")
35
public class OrgService extends com.ekexiu.console.service.Upload {
33
public class OrgService {
36 34
    private String defaultOrgType;
37 35

38 36
    /**
@ -40,25 +38,6 @@ public class OrgService extends com.ekexiu.console.service.Upload {
40 38
     */
41 39
    private String defaultAuthStatus = "0";
42 40

43
    private File imagePath;
44
    private File tmpPath;
45
    private File orgPath;
46
    private int largeHeadPhotoWidth = 200;
47
    private int largeHeadPhotoHeight = 200;
48
    private int middleHeadPhotoWidth = 200;
49
    private int middleHeadPhotoHeight = 200;
50
    private int smallHeadPhotoWidth = 200;
51
    private int smallHeadPhotoHeight = 200;
52

53
    private File defaultHeadPhoto;
54
    private File defaultOrgLogo;
55
    private File defaultResourcePhoto;
56

57
    private byte[] dli;
58
    private byte[] dmi;
59
    private byte[] dsi;
60
    private byte[] dol;
61
    private byte[] dsl;
62 41
    public static final String DEFAULT_PW_STR = StringUtil.md5("123456");
63 42

64 43
    @Autowrie
@ -68,6 +47,8 @@ public class OrgService extends com.ekexiu.console.service.Upload {
68 47
    @Autowrie
69 48
    private OrgRecordDao orgRecordDao;
70 49
    @Autowrie
50
    private ImageService imageService;
51
    @Autowrie
71 52
    private KeyWordService keyWordService;
72 53

73 54
    public OrgRecordDao getOrgRecordDao() {
@ -78,30 +59,6 @@ public class OrgService extends com.ekexiu.console.service.Upload {
78 59
        this.orgRecordDao = orgRecordDao;
79 60
    }
80 61

81
    public File getDefaultHeadPhoto() {
82
        return defaultHeadPhoto;
83
    }
84

85
    public void setDefaultHeadPhoto(File defaultHeadPhoto) {
86
        this.defaultHeadPhoto = defaultHeadPhoto;
87
    }
88

89
    public File getDefaultOrgLogo() {
90
        return defaultOrgLogo;
91
    }
92

93
    public void setDefaultOrgLogo(File defaultOrgLogo) {
94
        this.defaultOrgLogo = defaultOrgLogo;
95
    }
96

97
    public File getDefaultResourcePhoto() {
98
        return defaultResourcePhoto;
99
    }
100

101
    public void setDefaultResourcePhoto(File defaultResourcePhoto) {
102
        this.defaultResourcePhoto = defaultResourcePhoto;
103
    }
104

105 62
    public String getDefaultOrgType() {
106 63
        return defaultOrgType;
107 64
    }
@ -118,31 +75,6 @@ public class OrgService extends com.ekexiu.console.service.Upload {
118 75
        this.defaultAuthStatus = defaultAuthStatus;
119 76
    }
120 77

121
    public File getImagePath() {
122
        return imagePath;
123
    }
124

125
    public void setImagePath(File imagePath) {
126
        this.imagePath = imagePath;
127
        this.orgPath = new File(this.imagePath, "org");
128
    }
129

130
    public File getTmpPath() {
131
        return tmpPath;
132
    }
133

134
    public void setTmpPath(File tmpPath) {
135
        this.tmpPath = tmpPath;
136
    }
137

138
    public File getOrgPath() {
139
        return orgPath;
140
    }
141

142
    public void setOrgPath(File orgPath) {
143
        this.orgPath = orgPath;
144
    }
145

146 78
    public OrgUserDao getOrgUserDao() {
147 79
        return orgUserDao;
148 80
    }
@ -159,60 +91,20 @@ public class OrgService extends com.ekexiu.console.service.Upload {
159 91
        this.orgDao = orgDao;
160 92
    }
161 93

162
    public KeyWordService getKeyWordService() {
163
        return keyWordService;
164
    }
165

166
    public void setKeyWordService(KeyWordService keyWordService) {
167
        this.keyWordService = keyWordService;
168
    }
169

170
    public int getLargeHeadPhotoWidth() {
171
        return largeHeadPhotoWidth;
172
    }
173

174
    public void setLargeHeadPhotoWidth(int largeHeadPhotoWidth) {
175
        this.largeHeadPhotoWidth = largeHeadPhotoWidth;
94
    public ImageService getImageService() {
95
        return imageService;
176 96
    }
177 97

178
    public int getLargeHeadPhotoHeight() {
179
        return largeHeadPhotoHeight;
98
    public void setImageService(ImageService imageService) {
99
        this.imageService = imageService;
180 100
    }
181 101

182
    public void setLargeHeadPhotoHeight(int largeHeadPhotoHeight) {
183
        this.largeHeadPhotoHeight = largeHeadPhotoHeight;
184
    }
185

186
    public int getMiddleHeadPhotoWidth() {
187
        return middleHeadPhotoWidth;
188
    }
189

190
    public void setMiddleHeadPhotoWidth(int middleHeadPhotoWidth) {
191
        this.middleHeadPhotoWidth = middleHeadPhotoWidth;
192
    }
193

194
    public int getMiddleHeadPhotoHeight() {
195
        return middleHeadPhotoHeight;
196
    }
197

198
    public void setMiddleHeadPhotoHeight(int middleHeadPhotoHeight) {
199
        this.middleHeadPhotoHeight = middleHeadPhotoHeight;
200
    }
201

202
    public int getSmallHeadPhotoWidth() {
203
        return smallHeadPhotoWidth;
204
    }
205

206
    public void setSmallHeadPhotoWidth(int smallHeadPhotoWidth) {
207
        this.smallHeadPhotoWidth = smallHeadPhotoWidth;
208
    }
209

210
    public int getSmallHeadPhotoHeight() {
211
        return smallHeadPhotoHeight;
102
    public KeyWordService getKeyWordService() {
103
        return keyWordService;
212 104
    }
213 105

214
    public void setSmallHeadPhotoHeight(int smallHeadPhotoHeight) {
215
        this.smallHeadPhotoHeight = smallHeadPhotoHeight;
106
    public void setKeyWordService(KeyWordService keyWordService) {
107
        this.keyWordService = keyWordService;
216 108
    }
217 109

218 110
    @Post
@ -225,63 +117,6 @@ public class OrgService extends com.ekexiu.console.service.Upload {
225 117
        return id;
226 118
    }
227 119

228
    public void saveOrgLogo(String id, String fn) throws IOException {
229
        InputStream in = new FileInputStream(new File(this.tmpPath, fn));
230
        try {
231
            IoUtil.copy(in, new FileOutputStream(new File(this.orgPath, id + ".jpg")), false, true);
232
        } finally {
233
            in.close();
234
        }
235
    }
236

237
    public void saveDefaultOrgLogo(String id) throws IOException {
238
        this.initDefaultImage();
239
        IoUtil.saveStream(new FileOutputStream(new File(this.orgPath, id + ".jpg")), this.dol, true);
240
    }
241

242
    private byte[] zoomImage(byte[] src, int w, int h) throws IOException {
243
        ByteArrayInputStream in = new ByteArrayInputStream(src);
244
        ByteArrayOutputStream out = new ByteArrayOutputStream();
245
        JpgUtil.zoom(in, out, w, h);
246
        out.flush();
247
        return out.toByteArray();
248
    }
249

250
    private void initDefaultImage() {
251
        if (this.dli != null)
252
            return;
253
        synchronized (this) {
254
            if (this.dli != null)
255
                return;
256
            try {
257
                byte[] dd = IoUtil.readStream(new FileInputStream(this.defaultHeadPhoto), true);
258
                this.dli = this.zoomImage(dd, this.largeHeadPhotoWidth, this.largeHeadPhotoHeight);
259
                this.dmi = this.zoomImage(dd, this.middleHeadPhotoWidth, this.middleHeadPhotoHeight);
260
                this.dsi = this.zoomImage(dd, this.smallHeadPhotoWidth, this.smallHeadPhotoHeight);
261
                this.dol = IoUtil.readStream(new FileInputStream(this.defaultOrgLogo), true);
262
                this.dsl = IoUtil.readStream(new FileInputStream(this.defaultResourcePhoto), true);
263
            } catch (IOException e) {
264
                this.dli = null;
265
                this.dmi = null;
266
                this.dsi = null;
267
                this.dol = null;
268
                this.dsl = null;
269
                throw new RuntimeException("init image error", e);
270
            }
271
        }
272
    }
273

274
    public boolean hasOrgLogo(String id) {
275
        String orgPath = this.orgPath+"/"+id+".jpg";
276
        File file = new File(orgPath);
277
        if(file.exists()){
278
            return true;
279
        }else{
280
            return false;
281
        }
282
    }
283

284

285 120
    @Path("/entryCheck")
286 121
    @Get
287 122
    public int entryCheck(@JdbcConn Connection con, String name, String email) throws SQLException {
@ -405,7 +240,7 @@ public class OrgService extends com.ekexiu.console.service.Upload {
405 240
    @Path("/update")
406 241
    public void update(@JdbcConn(true) Connection con, Organization orgn, @Nullable String fn,@LoginUser ConsoleAuthUser user) throws SQLException, IOException {
407 242
        if (fn != null) {
408
            this.saveOrgLogo(orgn.getId(), fn);
243
            this.imageService.saveOrgLogo(orgn.getId(), fn);
409 244
        }
410 245
        this.orgDao.update(con, orgn);
411 246
        OrgRecord orgRecord = this.orgRecordDao.queryById(con, orgn.getId());
@ -454,7 +289,7 @@ public class OrgService extends com.ekexiu.console.service.Upload {
454 289
    public OrganizationInfo query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
455 290
        OrganizationInfo organizationInfo = this.orgDao.query(con, id);
456 291
        if (organizationInfo != null) {
457
            organizationInfo.setHasOrgLogo(this.hasOrgLogo(organizationInfo.getId()));
292
            organizationInfo.setHasOrgLogo(this.imageService.hasOrgLogo(organizationInfo.getId()));
458 293
        }
459 294
        return organizationInfo;
460 295
    }
@ -482,7 +317,7 @@ public class OrgService extends com.ekexiu.console.service.Upload {
482 317
        org.setAuthStatus(this.defaultAuthStatus);
483 318
        try {
484 319
            orgDao.insert(con, org);
485
            this.saveDefaultOrgLogo(id);
320
            this.imageService.saveDefaultOrgLogo(id);
486 321
        } catch (SQLException e) {
487 322
            if ("23505".equals(e.getSQLState())) {
488 323
                con.rollback();

+ 22 - 22
src/main/java/com/ekexiu/console/system/service/ProfessorService.java

@ -135,32 +135,32 @@ public class ProfessorService {
135 135
    @Path
136 136
    public void update(@JdbcConn(true) Connection con, @RequestBody ProfessorInfo professor) throws SQLException, JfwBaseException, IOException {
137 137
        UserDetail userDetail = this.professorDao.queryDetail(con, professor.getId());
138
        if (!Objects.equals(userDetail.getActiveStatus(), "1")) {
139
            if (professor.getOrgName() != null) {
140
                if (null != this.orgDao.queryByName(con, professor.getOrgName())) {
141
                    professor.setOrgId(this.orgDao.queryByName(con, professor.getOrgName()));
142
                } else {
143
                    professor.setOrgId(this.orgService.createOrganization(con, professor.getOrgName()));
144
                }
145
            }
146
            this.professorDao.update(con, professor);
147
            if (professor.getResearchAreas() != null && !professor.getResearchAreas().isEmpty()) {
148
                this.researchAreaService.saveResearchArea(con, professor.getResearchAreas());
138
        //if (!Objects.equals(userDetail.getActiveStatus(), "1")) {
139
        if (professor.getOrgName() != null) {
140
            if (null != this.orgDao.queryByName(con, professor.getOrgName())) {
141
                professor.setOrgId(this.orgDao.queryByName(con, professor.getOrgName()));
149 142
            } else {
150
                this.researchAreaService.delete(con, professor.getId());
151
            }
152
            Professor p = this.professorDao.query(con, professor.getId());
153
            String subject = p.getSubject();
154
            if (subject == null) {
155
                subject = "";
143
                professor.setOrgId(this.orgService.createOrganization(con, professor.getOrgName()));
156 144
            }
157
            String industry = p.getIndustry();
158
            if (industry == null)
159
                industry = "";
160
            this.keyWordService.refreshProfessor(con, professor.getId(), subject + "," + industry);
145
        }
146
        this.professorDao.update(con, professor);
147
        if (professor.getResearchAreas() != null && !professor.getResearchAreas().isEmpty()) {
148
            this.researchAreaService.saveResearchArea(con, professor.getResearchAreas());
161 149
        } else {
162
            throw new JfwBaseException(50000, "只能修改未激活用户信息");
150
            this.researchAreaService.delete(con, professor.getId());
151
        }
152
        Professor p = this.professorDao.query(con, professor.getId());
153
        String subject = p.getSubject();
154
        if (subject == null) {
155
            subject = "";
163 156
        }
157
        String industry = p.getIndustry();
158
        if (industry == null)
159
            industry = "";
160
        this.keyWordService.refreshProfessor(con, professor.getId(), subject + "," + industry);
161
        //} else {
162
        //    throw new JfwBaseException(50000, "只能修改未激活用户信息");
163
        //}
164 164
    }
165 165
166 166
    @Get

+ 107 - 0
src/main/java/com/ekexiu/console/system/service/TemplateService.java

@ -0,0 +1,107 @@
1
package com.ekexiu.console.system.service;
2
3
import freemarker.cache.TemplateLoader;
4
import freemarker.template.Configuration;
5
import freemarker.template.Template;
6
import freemarker.template.TemplateException;
7
import freemarker.template.TemplateExceptionHandler;
8
import org.jfw.apt.annotation.Bean;
9
import org.jfw.util.ConstData;
10
11
import java.io.*;
12
import java.util.Map;
13
14
/**
15
 * Created by TT on 2017/8/24.
16
 */
17
@Bean
18
public class TemplateService {
19
20
    private File source;
21
    private Configuration cfg = new Configuration(Configuration.VERSION_2_3_26);
22
23
    public Configuration getCfg() {
24
        return cfg;
25
    }
26
27
    public void setSource(File source) {
28
        this.source = source;
29
        try {
30
            this.cfg.setDirectoryForTemplateLoading(source);
31
        } catch (IOException e) {
32
            this.source = null;
33
            this.cfg.setTemplateLoader(new TemplateLoader() {
34
                @Override
35
                public Reader getReader(Object templateSource, String encoding) throws IOException {
36
                    StringReader reader = new StringReader("TemplateService'source is invalid dir,so "+templateSource.toString()+" can't read");
37
                    return reader;
38
                }
39
40
                @Override
41
                public long getLastModified(Object templateSource) {
42
                    return 0;
43
                }
44
45
                @Override
46
                public Object findTemplateSource(String name) throws IOException {
47
                    return name;
48
                }
49
50
                @Override
51
                public void closeTemplateSource(Object templateSource) throws IOException {
52
                }
53
            });
54
        }
55
        cfg.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
56
    }
57
58
    public void genCnt(Configuration cfg,String templateName,File dest,Map<String,Object> root) throws IOException, TemplateException {
59
        if(dest.exists()){
60
            if(!dest.delete()){
61
                throw new IOException("delete file["+dest.getAbsolutePath()+"] error");
62
            }
63
        }
64
        Template template = cfg.getTemplate(templateName,"UTF-8");
65
        OutputStream out = new FileOutputStream(dest);
66
        try {
67
            template.process(root, new OutputStreamWriter(out, ConstData.UTF8));
68
            out.flush();
69
        } finally {
70
            out.close();
71
        }
72
    }
73
74
75
    public static void main(String[] args) {
76
        //BannerService templateService = new BannerService();
77
        ////templateService.setSource(new File("D:/tmp/banner"));
78
        //StringTemplateLoader stringLoader = new StringTemplateLoader();
79
        //stringLoader.putTemplate("slideTab",templatePc);
80
        //stringLoader.putTemplate("appfound",templateApp);
81
        //templateService.cfg.setTemplateLoader(stringLoader);
82
        //ArrayList<Banner> banners = new ArrayList<>();
83
        //ArrayList<Integer> ids = new ArrayList<>();
84
        //ids.add(30);
85
        //ids.add(20);
86
        //ids.add(10);
87
        //ids.add(50);
88
        //ids.add(60);
89
        //for (int i=0;i<5;i++) {
90
        //    Banner b = new Banner();
91
        //    b.setId(String.valueOf(ids.get(i)));
92
        //    b.setImage("image"+i);
93
        //    b.setBanner("banner"+i);
94
        //    b.setTitle("title"+i);
95
        //    banners.add(b);
96
        //}
97
        //Map<String, Object> root = new HashMap<String, Object>();
98
        //root.put("banner", banners);
99
        //try {
100
        //    templateService.genCnt("slideTab",new File("D:/tmp/banner/generate.html"),root);
101
        //    templateService.genCnt("appfound",new File("D:/tmp/banner/generateApp.html"),root);
102
        //} catch (IOException | TemplateException e) {
103
        //    e.printStackTrace();
104
        //}
105
    }
106
107
}

+ 18 - 0
src/main/java/com/ekexiu/console/system/service/TestService.java

@ -44,4 +44,22 @@ public class TestService {
44 44
		}
45 45
		
46 46
	}
47
48
	//private TestService(int i) {
49
	//	this.anInt = i;
50
	//}
51
	//
52
	//public static TestService build(int i) {
53
	//	return new TestService(i);
54
	//}
55
	//
56
	//public int getAnInt() {
57
	//	return anInt;
58
	//}
59
	//
60
	//public static void main(String[] args) {
61
	//	TestService testService = TestService.build(10);
62
	//	int i = testService.getAnInt();
63
	//	System.out.println(i);
64
	//}
47 65
}

+ 34 - 1
src/main/resources/database.sql

@ -59,4 +59,37 @@ ALTER TABLE article ADD COLUMN sort_num  int8 default 0 not null;
59 59
COMMENT ON COLUMN article.sort_num IS '排序字段,人工权重';
60 60
61 61
ALTER TABLE resource ADD COLUMN sort_num  int8 default 0 not null;
62
COMMENT ON COLUMN resource.sort_num IS '排序字段,人工权重';
62
COMMENT ON COLUMN resource.sort_num IS '排序字段,人工权重';
63
64
-----begin version 1.9.2------------------------
65
66
-- ------------------------------------
67
-- Table structure for discover_banner
68
-- ------------------------------------
69
CREATE TABLE discover_banner (
70
  id bigserial PRIMARY KEY NOT NULL, -- 编号id
71
  title CHARACTER VARYING(50) NOT NULL, -- 外显标题
72
  banner SMALLINT NOT NULL, -- 栏目
73
  begin_time CHARACTER(14), -- 上架时间
74
  end_time CHARACTER(14), -- 下架时间
75
  clicks BIGINT NOT NULL DEFAULT 0, -- 点击量
76
  descp TEXT, -- 备注
77
  article_id CHARACTER(32) NOT NULL, -- 文章ID
78
  modify_time CHARACTER(14) NOT NULL, -- 修改时间
79
  modifier CHARACTER VARYING(32), -- 最后修改人ID
80
  create_time CHARACTER(14) NOT NULL, -- 创建时间
81
  creator CHARACTER VARYING(32) NOT NULL -- 创建人ID
82
);
83
COMMENT ON COLUMN discover_banner.id IS '编号id';
84
COMMENT ON COLUMN discover_banner.title IS '外显标题';
85
COMMENT ON COLUMN discover_banner.banner IS '栏目';
86
COMMENT ON COLUMN discover_banner.begin_time IS '上架时间';
87
COMMENT ON COLUMN discover_banner.end_time IS '下架时间';
88
COMMENT ON COLUMN discover_banner.clicks IS '点击量';
89
COMMENT ON COLUMN discover_banner.descp IS '备注';
90
COMMENT ON COLUMN discover_banner.article_id IS '文章ID';
91
COMMENT ON COLUMN discover_banner.modify_time IS '修改时间';
92
COMMENT ON COLUMN discover_banner.modifier IS '最后修改人ID';
93
COMMENT ON COLUMN discover_banner.create_time IS '创建时间';
94
COMMENT ON COLUMN discover_banner.creator IS '创建人ID';
95

+ 12 - 10
src/main/resources/project-dev.properties

@ -35,26 +35,26 @@ dataSource.defaultAutoCommit::boolean=false
35 35

36 36

37 37
#com_ekexiu_console_system_service_UserService.path::java.io.File=D:/tmp/data
38
#com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=D:/tmp/data/images/tmp
39
#com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=D:/tmp/data/images
38
#com_ekexiu_console_system_service_ImageService.tmpPath::java.io.File=D:/tmp/data/images/tmp
39
#com_ekexiu_console_system_service_ImageService.imagePath::java.io.File=D:/tmp/data/images
40 40
#cachedFileUploadServlet.cachePath::java.io.File=D:/tmp/data/images/tmp
41
#com_ekexiu_console_system_service_OrgService.defaultHeadPhoto::java.io.File=D:/tmp/data/images/default-icon.jpg
41
#com_ekexiu_console_system_service_ImageService.defaultHeadPhoto::java.io.File=D:/tmp/data/images/default-icon.jpg
42 42
##机构默认图片保存路径
43
#com_ekexiu_console_system_service_OrgService.defaultOrgLogo::java.io.File=D:/tmp/data/images/default-icon.jpg
43
#com_ekexiu_console_system_service_ImageService.defaultOrgLogo::java.io.File=D:/tmp/data/images/default-icon.jpg
44 44
##资源默认图片保存路径
45
#com_ekexiu_console_system_service_OrgService.defaultResourcePhoto::java.io.File=D:/tmp/data/images/default-icon.jpg
45
#com_ekexiu_console_system_service_ImageService.defaultResourcePhoto::java.io.File=D:/tmp/data/images/default-icon.jpg
46 46

47 47

48 48

49
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
50
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
49
com_ekexiu_console_system_service_ImageService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
50
com_ekexiu_console_system_service_ImageService.imagePath::java.io.File=/kexiu/www/html/images
51 51
cachedFileUploadServlet.cachePath::java.io.File=/kexiu/www/html/images/tmp
52 52
#用户默认头像保存路径
53
com_ekexiu_console_system_service_OrgService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
53
com_ekexiu_console_system_service_ImageService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
54 54
#机构默认图片保存路径
55
com_ekexiu_console_system_service_OrgService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
55
com_ekexiu_console_system_service_ImageService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
56 56
#资源默认图片保存路径
57
com_ekexiu_console_system_service_OrgService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
57
com_ekexiu_console_system_service_ImageService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
58 58

59 59

60 60

@ -95,3 +95,5 @@ mailService_Map.map-val-2::java.lang.String=true
95 95

96 96
com_ekexiu_console_system_service_OrgService.defaultOrgType=1
97 97

98
#com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.File=D:/tmp/data
99
com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.File=/kexiu/webdata/data/inc

+ 7 - 5
src/main/resources/project-test-dev.properties

@ -30,14 +30,14 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31 31
dataSource.defaultAutoCommit::boolean=false
32 32
33
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
33
com_ekexiu_console_system_service_ImageService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_ImageService.imagePath::java.io.File=/kexiu/www/html/images
35 35
#用户默认头像保存路径
36
com_ekexiu_console_system_service_OrgService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
36
com_ekexiu_console_system_service_ImageService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
37 37
#机构默认图片保存路径
38
com_ekexiu_console_system_service_OrgService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
38
com_ekexiu_console_system_service_ImageService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
39 39
#资源默认图片保存路径
40
com_ekexiu_console_system_service_OrgService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
40
com_ekexiu_console_system_service_ImageService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
41 41
42 42
cachedFileUploadServlet=org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig
43 43
cachedFileUploadServlet.cacheByMemory::boolean=false
@ -76,3 +76,5 @@ mailService_Map.map-key-2::java.lang.String=mail.smtp.auth
76 76
mailService_Map.map-val-2::java.lang.String=true
77 77
78 78
com_ekexiu_console_system_service_OrgService.defaultOrgType=1
79
80
com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.File=/kexiu/webdata/data/inc

+ 8 - 6
src/main/resources/project-test.properties

@ -30,14 +30,14 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31 31
dataSource.defaultAutoCommit::boolean=false
32 32
33
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
33
com_ekexiu_console_system_service_ImageService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_ImageService.imagePath::java.io.File=/kexiu/www/html/images
35 35
#用户默认头像保存路径
36
com_ekexiu_console_system_service_OrgService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
36
com_ekexiu_console_system_service_ImageService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
37 37
#机构默认图片保存路径
38
com_ekexiu_console_system_service_OrgService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
38
com_ekexiu_console_system_service_ImageService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
39 39
#资源默认图片保存路径
40
com_ekexiu_console_system_service_OrgService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
40
com_ekexiu_console_system_service_ImageService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
41 41
42 42
cachedFileUploadServlet=org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig
43 43
cachedFileUploadServlet.cacheByMemory::boolean=false
@ -75,4 +75,6 @@ mailService_Map.map-val-1::java.lang.String=smtp
75 75
mailService_Map.map-key-2::java.lang.String=mail.smtp.auth
76 76
mailService_Map.map-val-2::java.lang.String=true
77 77
78
com_ekexiu_console_system_service_OrgService.defaultOrgType=1
78
com_ekexiu_console_system_service_OrgService.defaultOrgType=1
79
80
com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.File=/kexiu/webdata/data/inc

+ 8 - 6
src/main/resources/project.properties

@ -30,15 +30,15 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31 31
dataSource.defaultAutoCommit::boolean=false
32 32
33
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
33
com_ekexiu_console_system_service_ImageService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_ImageService.imagePath::java.io.File=/kexiu/www/html/images
35 35
36 36
#用户默认头像保存路径
37
com_ekexiu_console_system_service_OrgService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
37
com_ekexiu_console_system_service_ImageService.defaultHeadPhoto::java.io.File=/kexiu/www/html/images/default-photo.jpg
38 38
#机构默认图片保存路径
39
com_ekexiu_console_system_service_OrgService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
39
com_ekexiu_console_system_service_ImageService.defaultOrgLogo::java.io.File=/kexiu/www/html/images/default-icon.jpg
40 40
#资源默认图片保存路径
41
com_ekexiu_console_system_service_OrgService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
41
com_ekexiu_console_system_service_ImageService.defaultResourcePhoto::java.io.File=/kexiu/www/html/images/default-icon.jpg
42 42
43 43
cachedFileUploadServlet=org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig
44 44
cachedFileUploadServlet.cacheByMemory::boolean=false
@ -77,4 +77,6 @@ mailService_Map.map-val-1::java.lang.String=smtp
77 77
mailService_Map.map-key-2::java.lang.String=mail.smtp.auth
78 78
mailService_Map.map-val-2::java.lang.String=true
79 79
80
com_ekexiu_console_system_service_OrgService.defaultOrgType=1
80
com_ekexiu_console_system_service_OrgService.defaultOrgType=1
81
82
com_ekexiu_console_system_service_DiscoverBannerService.generatePath::java.io.File=/kexiu/webdata/data/inc