jsp2 [JSP] 특정 날짜 이후로 화면 바꾸기 특정 날짜가 되면 화면에 보이는 문구를 바꿔보고자 한다 우선 날짜를 포맷하기 위한 taglib이 있어야 한다 현재 날짜를 만들어 주고, 20230214 형태로 포맷한 뒤 c:if/c:when 문을 이용해 안에 들어갈 내용을 바꿔주기만 하면 된다 2023년 3월이 아직 안 되었네요 2023년 3월 이후입니다 2023. 2. 14. [Ajax] JSP에서 Key-Value 형태로 값 받기(JSONObject) Controller JSONObject를 만들고 key와 value값을 넣는다 @RequestMapping("/example/jsonobject.do") public String selectRequiredUserInfo(@ModelAttribute ExampleVO exampleVO, ModelMap model, HttpServletRequest req) throws Exception { JSONObject jsonObj = new JSONObject(); jsonObj.put("color", "white"); jsonObj.put("size", "mini"); jsonObj.put("name", "iphone"); model.put("jsonResult", jsonObj.toString()); retu.. 2023. 2. 14. 이전 1 다음