알림톡 faq key값 수정

This commit is contained in:
hehihoho3@gmail.com 2025-06-22 14:27:48 +09:00
parent e64695cd12
commit 759f7a3dc4

View File

@ -85,10 +85,11 @@ public class KakaoStepInfoController {
String bbsId = ""; String bbsId = "";
String serverName = request.getServerName();//URL 도메인정보 받아오기 String serverName = request.getServerName();//URL 도메인정보 받아오기
System.out.println("serverName : "+ serverName);
if(serverName.equals("www.munjaon.co.kr")) {//운영서버 카카오 사용안내 FAQ 게시판 번호 셋팅해주기 if(serverName.equals("www.munjaon.co.kr")) {//운영서버 카카오 사용안내 FAQ 게시판 번호 셋팅해주기
bbsId = "BBSMSTR_000000000782"; bbsId = "BBSMSTR_000000000782";
}else {//개발서버 카카오 사용안내 FAQ 게시판 번호 셋팅해주기 }else {//개발서버 카카오 사용안내 FAQ 게시판 번호 셋팅해주기
bbsId = "BBSMSTR_000000000791"; bbsId = "BBSMSTR_000000000782";
} }
boardVO.setBbsId(bbsId); boardVO.setBbsId(bbsId);
@ -113,7 +114,7 @@ public class KakaoStepInfoController {
boardVO.setRecordCountPerPage(100); boardVO.setRecordCountPerPage(100);
map = bbsMngService.selectBoardArticlesWeb(boardVO, null); map = bbsMngService.selectBoardArticlesWeb(boardVO, null);
System.out.println("????????????????????????????????");
int totCnt = Integer.parseInt((String) map.get("resultCnt")); int totCnt = Integer.parseInt((String) map.get("resultCnt"));
paginationInfo.setTotalRecordCount(totCnt); paginationInfo.setTotalRecordCount(totCnt);