@ -37,7 +37,9 @@ public class CodeController extends AbstractController {
*/
@RequestMapping(name="공통코드 메인", value="/main.do")
public ModelAndView main() {
return new ModelAndView("base/code/code-main");
ModelAndView mav = getGroupList(new CodeQuery().setPageNum(1));
mav.setViewName("base/code/code-main");
return mav.addObject("groupList", toJson(mav.getModel().remove("groupList")));
}
/**코드 분류 목록을 조회한다.