XMTT 7 anni fa
parent
commit
ca3b1f837c

+ 89 - 0
src/main/java/com/ekexiu/console/system/dao/QuestionDao.java

@ -0,0 +1,89 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Answer;
4
import com.ekexiu.console.system.po.Question;
5
import com.ekexiu.console.system.pojo.AnswerInfo;
6
import com.ekexiu.console.system.pojo.QuestionInfo;
7
import org.jfw.apt.annotation.Nullable;
8
import org.jfw.apt.orm.annotation.dao.DAO;
9
import org.jfw.apt.orm.annotation.dao.method.From;
10
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
11
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
12
import org.jfw.apt.orm.annotation.dao.method.Where;
13
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
14
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
15
import org.jfw.apt.orm.annotation.dao.method.operator.QueryOne;
16
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
17
import org.jfw.apt.orm.annotation.dao.param.Like;
18
import org.jfw.apt.orm.annotation.dao.param.Set;
19
import org.jfw.util.PageQueryResult;
20
21
import java.sql.Connection;
22
import java.sql.SQLException;
23
24
/**
25
 * Created by TT on 2018/1/26.
26
 */
27
@DAO
28
public interface QuestionDao {
29
    @PageQuery
30
    @OrderBy(" ORDER BY create_time DESC ")
31
    @Where(" a.STATE='1'")
32
    PageQueryResult<AnswerInfo> answerByTime(Connection con, @Nullable @Like String questionTitle, @Nullable @Like String respondent, @Nullable @Like String cnt, int pageSize, int pageNo)throws SQLException;
33
34
    @PageQuery
35
    @OrderBy(" ORDER BY agree DESC")
36
    @Where("a.STATE='1'")
37
    PageQueryResult<AnswerInfo> answerByAgree(Connection con, @Nullable @Like String questionTitle, @Nullable @Like String respondent, @Nullable @Like String cnt, int pageSize, int pageNo)throws SQLException;
38
39
    @PageQuery
40
    @OrderBy(" ORDER BY ballot DESC")
41
    @Where("a.STATE='1'")
42
    PageQueryResult<AnswerInfo> answerByBallot(Connection con, @Nullable @Like String questionTitle, @Nullable @Like String respondent, @Nullable @Like String cnt, int pageSize, int pageNo)throws SQLException;
43
44
    @QueryOne
45
    @Nullable
46
    AnswerInfo queryAnswer(Connection con, String id) throws SQLException;
47
48
    @UpdateWith
49
    @From(Answer.class)
50
    @Where("STATE='1'")
51
    //@SetSentence("MODIFY_TIME=TO_CHAR(NOW(),'YYYYMMDDHH24MISS')")
52
    int updateAnswer(Connection con, String id, @Set String cnt) throws SQLException;
53
54
    @DeleteWith
55
    @From(Answer.class)
56
    int deleteAnswer(Connection con, String id)throws SQLException;
57
58
    @PageQuery
59
    @OrderBy("order by create_time DESC")
60
    PageQueryResult<QuestionInfo> questionByTime(Connection con, @Nullable String title, @Nullable String requester, int pageSize, int pageNo)throws SQLException;
61
62
    @PageQuery
63
    @OrderBy("order by page_views DESC")
64
    PageQueryResult<QuestionInfo> questionByPV(Connection con, @Nullable String title, @Nullable String requester, int pageSize, int pageNo)throws SQLException;
65
66
    @PageQuery
67
    @OrderBy("order by reply_count DESC")
68
    PageQueryResult<QuestionInfo> questionByReply(Connection con, @Nullable String title, @Nullable String requester, int pageSize, int pageNo)throws SQLException;
69
70
    @QueryOne
71
    @Nullable
72
    QuestionInfo queryQuestion(Connection con, String id) throws SQLException;
73
74
    @UpdateWith
75
    @From(Question.class)
76
    @Where("STATE='1'")
77
        //@SetSentence("MODIFY_TIME=TO_CHAR(NOW(),'YYYYMMDDHH24MISS')")
78
    int updateQuestion(Connection con, String id, @Set String cnt,@Set String img) throws SQLException;
79
80
    @UpdateWith
81
    @From(Question.class)
82
    int updataQetKey(Connection con, String id, @Set String keys)throws SQLException;
83
84
    @UpdateWith
85
    @From(Question.class)
86
    @SetSentence("STATE='0'")
87
    @Where("STATE ='1'")
88
    int logicDeleteQuestion(Connection con, String id) throws SQLException;
89
}

+ 152 - 0
src/main/java/com/ekexiu/console/system/po/Answer.java

@ -0,0 +1,152 @@
1
package com.ekexiu.console.system.po;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.annotation.entry.Unique;
7
import org.jfw.apt.orm.annotation.entry.Uniques;
8
import org.jfw.apt.orm.core.enums.DE;
9
10
/**
11
 * Created by TT on 2018/1/26.
12
 */
13
@PrimaryKey("id")
14
@Uniques({@Unique(clolumns = {"qid", "uid"}, name = "UNI_ANSWER_QID_UID")})
15
@Table
16
public class Answer {
17
    private String id;
18
    private String qid;
19
    private String uid;
20
    private String state;
21
    private String cnt;
22
    private long agree;
23
    private long ballot;
24
    private String createTime;
25
    private String modifyTime;
26
    private transient String timeDesc;
27
28
    @Column(DE.text_de)
29
    public String getTimeDesc() {
30
        return timeDesc;
31
    }
32
33
    public void setTimeDesc(String timeDesc) {
34
        this.timeDesc = timeDesc;
35
    }
36
37
    /**
38
     * ID
39
     *
40
     * @return
41
     */
42
    @Column(DE.id_32)
43
    public String getId() {
44
        return id;
45
    }
46
47
    public void setId(String id) {
48
        this.id = id;
49
    }
50
51
    /**
52
     * 问题ID
53
     *
54
     * @return
55
     */
56
    @Column(DE.text_de)
57
    public String getQid() {
58
        return qid;
59
    }
60
61
    public void setQid(String qid) {
62
        this.qid = qid;
63
    }
64
65
    /**
66
     * 回答人ID
67
     *
68
     * @return
69
     */
70
    @Column(DE.text_de)
71
    public String getUid() {
72
        return uid;
73
    }
74
75
    public void setUid(String uid) {
76
        this.uid = uid;
77
    }
78
79
    /**
80
     * 状态 1:发布中
81
     *
82
     * @return
83
     */
84
    @Column(DE.singleChar)
85
    public String getState() {
86
        return state;
87
    }
88
89
    public void setState(String state) {
90
        this.state = state;
91
    }
92
93
    /**
94
     * 回答内容
95
     *
96
     * @return
97
     */
98
    @Column(DE.text_de)
99
    public String getCnt() {
100
        return cnt;
101
    }
102
103
    public void setCnt(String cnt) {
104
        this.cnt = cnt;
105
    }
106
107
    /**
108
     * 点赞数量
109
     */
110
    @Column(DE.long_de)
111
    public long getAgree() {
112
        return agree;
113
    }
114
115
    public void setAgree(long agree) {
116
        this.agree = agree;
117
    }
118
119
    /**
120
     * 总数投票数
121
     *
122
     * @return
123
     */
124
    @Column(DE.long_de)
125
    public long getBallot() {
126
        return ballot;
127
    }
128
129
    public void setBallot(long ballot) {
130
        this.ballot = ballot;
131
    }
132
133
    @Column(DE.text_de)
134
    public String getCreateTime() {
135
        return createTime;
136
    }
137
138
    public void setCreateTime(String createTime) {
139
        this.createTime = createTime;
140
    }
141
142
    @Column(DE.text_de)
143
    public String getModifyTime() {
144
        return modifyTime;
145
    }
146
147
    public void setModifyTime(String modifyTime) {
148
        this.modifyTime = modifyTime;
149
    }
150
151
152
}

+ 36 - 0
src/main/java/com/ekexiu/console/system/po/QetKeyWord.java

@ -0,0 +1,36 @@
1
package com.ekexiu.console.system.po;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.enums.DE;
7
8
/**
9
 * Created by TT on 2018/1/26.
10
 */
11
@PrimaryKey({"id", "kw"})
12
@Table
13
public class QetKeyWord {
14
    private String id;
15
    private String kw;
16
17
    @Column(DE.text_de)
18
    public String getId() {
19
        return id;
20
    }
21
22
    public void setId(String id) {
23
        this.id = id;
24
    }
25
26
    @Column(DE.text_de)
27
    public String getKw() {
28
        return kw;
29
    }
30
31
    public void setKw(String kw) {
32
        this.kw = kw;
33
    }
34
35
36
}

+ 188 - 0
src/main/java/com/ekexiu/console/system/po/Question.java

@ -0,0 +1,188 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.ModifyTimeSupported;
4
import org.jfw.apt.orm.annotation.entry.Column;
5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
6
import org.jfw.apt.orm.annotation.entry.Table;
7
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
8
import org.jfw.apt.orm.core.enums.DE;
9
10
/**
11
 * Created by TT on 2018/1/26.
12
 */
13
@PrimaryKey("id")
14
@Table
15
public class Question implements ModifyTimeSupported {
16
17
    private String id;
18
    private String title;
19
    private String cnt;
20
    private String img;
21
    private String createTime;
22
    private String modifyTime;
23
    private String keys;
24
    private String uid;
25
    private String lastReplyTime;
26
    private long replyCount;
27
    private String state;
28
    private long pageViews;
29
    private transient String timeDesc;
30
31
32
    @Column(DE.long_de)
33
    public long getPageViews() {
34
        return pageViews;
35
    }
36
37
    public void setPageViews(long pageViews) {
38
        this.pageViews = pageViews;
39
    }
40
41
    @Column(DE.text_de)
42
    public String getTimeDesc() {
43
        return timeDesc;
44
    }
45
46
    public void setTimeDesc(String timeDesc) {
47
        this.timeDesc = timeDesc;
48
    }
49
50
    /**
51
     * ID
52
     *
53
     * @return
54
     */
55
    @Column(DE.id_32)
56
    public String getId() {
57
        return id;
58
    }
59
60
    public void setId(String id) {
61
        this.id = id;
62
    }
63
64
    @Column(DE.text_de)
65
    public String getTitle() {
66
        return title;
67
    }
68
69
    public void setTitle(String title) {
70
        this.title = title;
71
    }
72
73
    /**
74
     * 提问内容
75
     *
76
     * @return
77
     */
78
    @Column(DE.Text_de)
79
    public String getCnt() {
80
        return cnt;
81
    }
82
83
    public void setCnt(String cnt) {
84
        this.cnt = cnt;
85
    }
86
87
    /**
88
     * 图片 用英文豆号分隔
89
     *
90
     * @return
91
     */
92
    @Column(DE.Text_de)
93
    public String getImg() {
94
        return img;
95
    }
96
97
    public void setImg(String img) {
98
        this.img = img;
99
    }
100
101
    @Column(DE.text_de)
102
    public String getCreateTime() {
103
        return createTime;
104
    }
105
106
    public void setCreateTime(String createTime) {
107
        this.createTime = createTime;
108
    }
109
110
    public String getModifyTime() {
111
        return modifyTime;
112
    }
113
114
    public void setModifyTime(String modifyTime) {
115
        this.modifyTime = modifyTime;
116
    }
117
118
    /**
119
     * 关键词,以英文逗号分隔
120
     *
121
     * @return
122
     */
123
    @Column(DE.text_de)
124
    public String getKeys() {
125
        return keys;
126
    }
127
128
    public void setKeys(String keys) {
129
        this.keys = keys;
130
    }
131
132
    /**
133
     * 发布人ID
134
     *
135
     * @return
136
     */
137
    @Column(DE.text_de)
138
    public String getUid() {
139
        return uid;
140
    }
141
142
    public void setUid(String uid) {
143
        this.uid = uid;
144
    }
145
146
    /**
147
     * 最后回答时间
148
     *
149
     * @return
150
     */
151
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", fixSqlValueWithUpdate = "TO_CHAR(NOW(),'YYYYMMDDHH24MISS')", insertable = false, nullable = true, queryable = true, renewable = true)
152
    public String getLastReplyTime() {
153
        return lastReplyTime;
154
    }
155
156
    public void setLastReplyTime(String lastReplyTime) {
157
        this.lastReplyTime = lastReplyTime;
158
    }
159
160
    /**
161
     * 回答次数
162
     *
163
     * @return
164
     */
165
    @Column(DE.long_de)
166
    public long getReplyCount() {
167
        return replyCount;
168
    }
169
170
    public void setReplyCount(long replyCount) {
171
        this.replyCount = replyCount;
172
    }
173
174
    /**
175
     * 提问状态  1:发布中
176
     *
177
     * @return
178
     */
179
    @Column(DE.singleChar)
180
    public String getState() {
181
        return state;
182
    }
183
184
    public void setState(String state) {
185
        this.state = state;
186
    }
187
188
}

+ 34 - 0
src/main/java/com/ekexiu/console/system/pojo/AnswerInfo.java

@ -0,0 +1,34 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Answer;
4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7
8
/**
9
 * Created by TT on 2018/1/26.
10
 */
11
@ExtendView(fromSentence = "answer a LEFT JOIN question q on a.qid = q.id LEFT JOIN professor p on a.uid = p.id", tableAlias = "a")
12
public class AnswerInfo extends Answer {
13
    private String questionTitle;
14
    private String respondent;
15
16
    @CalcColumn(handlerClass = StringHandler.class,column = "q.title")
17
    public String getQuestionTitle() {
18
        return questionTitle;
19
    }
20
21
    public void setQuestionTitle(String questionTitle) {
22
        this.questionTitle = questionTitle;
23
    }
24
25
    @CalcColumn(handlerClass = StringHandler.class,column = "p.name")
26
    public String getRespondent() {
27
        return respondent;
28
    }
29
30
    public void setRespondent(String respondent) {
31
        this.respondent = respondent;
32
    }
33
34
}

+ 23 - 0
src/main/java/com/ekexiu/console/system/pojo/QuestionInfo.java

@ -0,0 +1,23 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Question;
4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7
8
/**
9
 * Created by TT on 2018/1/26.
10
 */
11
@ExtendView(fromSentence = "question q LEFT JOIN professor p on q.uid = p.id", tableAlias = "q")
12
public class    QuestionInfo extends Question {
13
    private String requester;
14
15
    @CalcColumn(handlerClass = StringHandler.class,column = "p.name")
16
    public String getRequester() {
17
        return requester;
18
    }
19
20
    public void setRequester(String requester) {
21
        this.requester = requester;
22
    }
23
}

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

@ -1,8 +1,20 @@
1 1
package com.ekexiu.console.system.service;
2 2
3
import com.ekexiu.console.system.dao.*;
3
import com.ekexiu.console.system.dao.ArticleDao;
4
import com.ekexiu.console.system.dao.DemandDao;
5
import com.ekexiu.console.system.dao.FeedbackDao;
6
import com.ekexiu.console.system.dao.OrgDao;
7
import com.ekexiu.console.system.dao.PpaperDao;
8
import com.ekexiu.console.system.dao.PpatentDao;
9
import com.ekexiu.console.system.dao.ProfessorDao;
10
import com.ekexiu.console.system.dao.QuestionDao;
11
import com.ekexiu.console.system.dao.ResourceDao;
12
import com.ekexiu.console.system.dao.UserDao;
13
import com.ekexiu.console.system.po.Demand;
4 14
import com.ekexiu.console.system.po.Feedback;
5 15
import com.ekexiu.console.system.po.Professor;
16
import com.ekexiu.console.system.po.Question;
17
import com.ekexiu.console.system.pojo.AnswerInfo;
6 18
import com.ekexiu.console.system.vo.ConsoleAuthUser;
7 19
import org.jfw.apt.annotation.Autowrie;
8 20
import org.jfw.apt.annotation.DefaultValue;
@ -42,6 +54,10 @@ public class FeedbackService {
42 54
    private ResourceDao resourceDao;
43 55
    @Autowrie
44 56
    private ArticleDao articleDao;
57
    @Autowrie
58
    private DemandDao demandDao;
59
    @Autowrie
60
    private QuestionDao questionDao;
45 61
46 62
47 63
    public FeedbackDao getFeedbackDao() {
@ -108,6 +124,22 @@ public class FeedbackService {
108 124
        this.articleDao = articleDao;
109 125
    }
110 126
127
    public DemandDao getDemandDao() {
128
        return demandDao;
129
    }
130
131
    public void setDemandDao(DemandDao demandDao) {
132
        this.demandDao = demandDao;
133
    }
134
135
    public QuestionDao getQuestionDao() {
136
        return questionDao;
137
    }
138
139
    public void setQuestionDao(QuestionDao questionDao) {
140
        this.questionDao = questionDao;
141
    }
142
111 143
    @Path("/update")
112 144
    @Post
113 145
    public void update(@JdbcConn(true) Connection con,long id,String state,@Nullable String operateDescp,@LoginUser ConsoleAuthUser user) throws SQLException {
@ -168,6 +200,23 @@ public class FeedbackService {
168 200
                    feedback.setDataName(name);
169 201
                }
170 202
            }
203
            if (feedback.getSchema() == 7) {
204
                Demand demand = this.demandDao.query(con, feedback.getParam());
205
                if (demand != null) {
206
                    feedback.setDataName(demand.getTitle());
207
                }
208
            }
209
            if (feedback.getSchema() == 8) {
210
                AnswerInfo answer = this.questionDao.queryAnswer(con, feedback.getParam());
211
                if (answer != null) {
212
                    feedback.setDataName(answer.getQuestionTitle());
213
                }
214
            }if (feedback.getSchema() == 9) {
215
                Question question = this.questionDao.queryQuestion(con, feedback.getParam());
216
                if (question != null) {
217
                    feedback.setDataName(question.getTitle());
218
                }
219
            }
171 220
        }
172 221
        return feedback;
173 222
    }

+ 171 - 0
src/main/java/com/ekexiu/console/system/service/QuestionService.java

@ -0,0 +1,171 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.QuestionDao;
4
import com.ekexiu.console.system.pojo.AnswerInfo;
5
import com.ekexiu.console.system.pojo.QuestionInfo;
6
import com.ekexiu.console.util.HttpService;
7
import com.ekexiu.console.util.HttpServiceImpl;
8
import org.jfw.apt.annotation.Autowrie;
9
import org.jfw.apt.annotation.DefaultValue;
10
import org.jfw.apt.annotation.Nullable;
11
import org.jfw.apt.web.annotation.Path;
12
import org.jfw.apt.web.annotation.operate.Delete;
13
import org.jfw.apt.web.annotation.operate.Get;
14
import org.jfw.apt.web.annotation.operate.Post;
15
import org.jfw.apt.web.annotation.param.JdbcConn;
16
import org.jfw.util.JpgUtil;
17
import org.jfw.util.ListUtil;
18
import org.jfw.util.PageQueryResult;
19
import org.jfw.util.io.IoUtil;
20
21
import java.io.ByteArrayInputStream;
22
import java.io.File;
23
import java.io.FileInputStream;
24
import java.io.FileOutputStream;
25
import java.io.IOException;
26
import java.sql.Connection;
27
import java.sql.SQLException;
28
import java.util.List;
29
30
/**
31
 * Created by TT on 2018/1/26.
32
 */
33
@Path("/qa")
34
public class QuestionService {
35
    private static HttpService http = new HttpServiceImpl();
36
    private File imgPath;
37
    private int imgMaxWidth = 70;
38
39
    @Autowrie
40
    private QuestionDao questionDao;
41
42
    public QuestionDao getQuestionDao() {
43
        return questionDao;
44
    }
45
46
    public void setQuestionDao(QuestionDao questionDao) {
47
        this.questionDao = questionDao;
48
    }
49
50
    public File getImgPath() {
51
        return imgPath;
52
    }
53
54
    public void setImgPath(File imgPath) {
55
        this.imgPath = imgPath;
56
    }
57
58
    public int getImgMaxWidth() {
59
        return imgMaxWidth;
60
    }
61
62
    public void setImgMaxWidth(int imgMaxWidth) {
63
        this.imgMaxWidth = imgMaxWidth;
64
    }
65
66
    @Path("/pqAnswer")
67
    @Get
68
    public PageQueryResult<AnswerInfo> pqAnswer(@JdbcConn Connection con, @Nullable String questionTitle, @Nullable String respondent, @Nullable String cnt, int orderBy, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
69
        if (orderBy == 1) {
70
            return this.questionDao.answerByTime(con, questionTitle == null ? null : "%" + questionTitle + "%", respondent == null ? null: "%" + respondent + "%", cnt == null ? null : "%" + cnt + "%", pageSize, pageNo);
71
        } else if (orderBy == 2) {
72
            return this.questionDao.answerByAgree(con, questionTitle == null ? null : "%" + questionTitle + "%", respondent == null ? null : "%" + respondent + "%", cnt == null ? null : "%" + cnt + "%", pageSize, pageNo);
73
        } else if (orderBy == 3) {
74
            return this.questionDao.answerByBallot(con, questionTitle == null ? null : "%" + questionTitle + "%", respondent == null ? null : "%" + respondent + "%", cnt == null ? null : "%" + cnt + "%", pageSize, pageNo);
75
        }
76
        return null;
77
    }
78
79
    @Path("/answer")
80
    @Get
81
    public AnswerInfo answer(@JdbcConn Connection con, String id) throws SQLException {
82
        return this.questionDao.queryAnswer(con, id);
83
    }
84
85
    @Post
86
    @Path("/answer/modify")
87
    public void answerUpdate(@JdbcConn(true) Connection con, String id, String cnt) throws SQLException {
88
        this.questionDao.updateAnswer(con, id, cnt);
89
    }
90
91
    @Path("/deleteAnswer")
92
    @Delete
93
    public void deleteAnswer(@JdbcConn(true) Connection con, String id) throws SQLException {
94
        this.questionDao.deleteAnswer(con, id);
95
    }
96
97
    @Path("/pqQuestion")
98
    @Get
99
    public PageQueryResult<QuestionInfo> pqQuestion(@JdbcConn Connection con, @Nullable String title, @Nullable String requester, int orderBy, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
100
        if (orderBy == 1) {
101
            return this.questionDao.questionByTime(con, title == null ? null : "%" + title + "%", requester == null ? null : "%" + requester + "%", pageSize, pageNo);
102
        } else if (orderBy == 2) {
103
            return this.questionDao.questionByPV(con, title == null ? null : "%" + title + "%", requester == null ? null : "%" + requester + "%", pageSize, pageNo);
104
        } else if (orderBy == 3) {
105
            return this.questionDao.questionByReply(con, title == null ? null : "%" + title + "%", requester == null ? null : "%" + requester + "%", pageSize, pageNo);
106
        }
107
        return null;
108
    }
109
110
    @Path("/question")
111
    @Get
112
    public QuestionInfo question(@JdbcConn Connection con, String id) throws SQLException {
113
        return this.questionDao.queryQuestion(con, id);
114
    }
115
116
    @Path("/question/modify")
117
    @Post
118
    public void questionUpdata(@JdbcConn(true) Connection con, String id, String cnt,String img) throws SQLException,IOException {
119
        this.saveSmallImg(img);
120
        this.questionDao.updateQuestion(con, id, cnt,img);
121
    }
122
123
    @Path("/question/keys")
124
    @Post
125
    public void questionKey(@JdbcConn(true)Connection con,String id,String keys)throws SQLException {
126
        this.questionDao.updataQetKey(con, id, keys);
127
    }
128
129
    @Path("/deleteQuestion")
130
    @Get
131
    public void deleteQuestion(@JdbcConn(true) Connection con, String id) throws SQLException {
132
        this.questionDao.logicDeleteQuestion(con, id);
133
    }
134
135
136
137
    private void saveSmallImg(String imgs) throws IOException {
138
        if (imgs != null) {
139
            List<String> list = ListUtil.splitTrimExcludeEmpty(imgs, ',');
140
            if (list.size() > 0) {
141
                String oname = list.get(0);
142
                if (oname != null) {
143
                    if (oname.startsWith("/")) {
144
                        oname = oname.substring(1);
145
                        int idx = oname.indexOf('.');
146
                        if (idx > 0) {
147
                            String dname = oname.substring(0, idx) + "_s.jpg";
148
                            File dest = new File(this.imgPath, dname);
149
                            if (dest.exists())
150
                                return;
151
                            File src = new File(this.imgPath, oname);
152
                            if (src.exists()) {
153
                                byte[] obs = IoUtil.readStream(new FileInputStream(src), true);
154
                                obs = JpgUtil.read(obs);
155
                                FileOutputStream out = new FileOutputStream(dest);
156
                                try {
157
                                    JpgUtil.scalingZoom(new ByteArrayInputStream(obs), out, this.imgMaxWidth);
158
                                    out.flush();
159
                                } finally {
160
                                    IoUtil.close(out);
161
                                }
162
                            }
163
                        }
164
                    }
165
                }
166
            }
167
        }
168
    }
169
170
171
}

+ 5 - 1
src/main/resources/project-dev.properties

@ -111,4 +111,8 @@ com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=
111 111

112 112
#资源图片保存目录
113 113
#com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=D:/tmp/data/resource
114
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
114
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
115

116
#问题图片保存目录
117
com_ekexiu_console_system_service_QuestionService.imgPath::java.io.File=D:/tmp/data/question
118
#com_ekexiu_console_system_service_QuestionService.imgPath::java.io.File=/kexiu/webdata/data/question

+ 4 - 1
src/main/resources/project-test-dev.properties

@ -88,4 +88,7 @@ com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=/kexi
88 88
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
89 89
90 90
#资源图片保存目录
91
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
91
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
92
93
#问题图片保存目录
94
#com_ekexiu_console_system_service_QuestionService.imgPath::java.io.File=/kexiu/webdata/data/question

+ 4 - 1
src/main/resources/project-test.properties

@ -88,4 +88,7 @@ com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=/kexi
88 88
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
89 89
90 90
#资源图片保存目录
91
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
91
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
92
93
#问题图片保存目录
94
#com_ekexiu_console_system_service_QuestionService.imgPath::java.io.File=/kexiu/webdata/data/question

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

@ -90,4 +90,7 @@ com_ekexiu_console_system_service_ArticleService.articlePath::java.io.File=/kexi
90 90
com_ekexiu_console_system_service_ImageService.researchResultPath::java.io.File=/kexiu/webdata/data/researchResult
91 91
92 92
#资源图片保存目录
93
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
93
com_ekexiu_console_system_service_ImageService.resourceDataPath::java.io.File=/kexiu/webdata/data/resource
94
95
#问题图片保存目录
96
#com_ekexiu_console_system_service_QuestionService.imgPath::java.io.File=/kexiu/webdata/data/question