메인페이지 게시물 획득 쿼리 수정.

master
강석 최 2022-03-28 11:15:31 +09:00
parent db70792bf3
commit 20df991f64
3 changed files with 31 additions and 34 deletions

View File

@ -72,9 +72,6 @@ public class BoardSearchVO extends BaseSearchVO {
* @param id . * @param id .
*/ */
public void setCategory(String category) { public void setCategory(String category) {
if (category == null || category.equals("")) {
category = " ";
}
this.category = category; this.category = category;
} }

View File

@ -91,6 +91,7 @@ public class CommonController {
if (EgovUserDetailsHelper.isAuthenticated()) { if (EgovUserDetailsHelper.isAuthenticated()) {
BoardSearchVO searchVO = new BoardSearchVO(); BoardSearchVO searchVO = new BoardSearchVO();
searchVO.setRecordCountPerPage(5); searchVO.setRecordCountPerPage(5);
searchVO.setCategory(null);
/* 내실적 조회 리스트 */ /* 내실적 조회 리스트 */
LoginUserVO loginUserVO = UserUtil.getMemberInfo(); LoginUserVO loginUserVO = UserUtil.getMemberInfo();

View File

@ -19,15 +19,13 @@
SELECT SELECT
* *
FROM H3_BD_${id}_LIST BBS FROM H3_BD_${id}_LIST BBS
WHERE 1 = 1 <where>
<choose> <if test='category != null'>
<when test='category == " " and id == "stat_bbs"'>
</when>
<otherwise>
AND BD_CATEGORY = #{category} AND BD_CATEGORY = #{category}
</otherwise> </if>
</choose> <!--<if test='id != "stat_bbs"'>
AND BD_CATEGORY = #{category}
</if>-->
<if test="searchKeyword != null and searchKeyword != ''"> <if test="searchKeyword != null and searchKeyword != ''">
<choose> <choose>
<when test="searchCondition == 0"> <when test="searchCondition == 0">
@ -41,6 +39,7 @@
</when> </when>
</choose> </choose>
</if> </if>
</where>
ORDER BY ORDER BY
BBS.BD_NOTICE DESC, BBS.BD_NOTICE DESC,
BBS.BD_GROUP_SEQ DESC, BBS.BD_GROUP_SEQ DESC,