RequestMapping 부분에 produces = "application/text; charset=utf8" 코드 넣어주기
Json일 경우에는 produces = "application/json; charset=utf8" 으로 해주면 됨!
@RequestMapping(value = "/accept/{grp_num}", produces = "application/text; charset=utf8")
public String acceptREST(@PathVariable("grp_num") int grp_num, HttpSession session) {
log.info("테스트");
}
참조
'1. 프로그래밍 > 오류' 카테고리의 다른 글
java build path maven dependencies 오류 (0) | 2022.07.26 |
---|---|
Deployment Assembly 오류 (0) | 2022.07.12 |
이클립스 한글 깨짐 (0) | 2022.06.29 |
Spring - [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException ...] (0) | 2022.06.21 |
Spring - java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 오류 (0) | 2022.06.14 |