Spring Boot/기타
-
[Spring Boot] 에러 메시지 처리 (Custom Exception)Spring Boot/기타 2022. 6. 6. 13:07
1. build.gradeplugins { id 'org.springframework.boot' version '2.7.0' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java'}group = 'com.example'version = '0.0.1-SNAPSHOT'sourceCompatibility = '11'repositories { mavenCentral()}dependencies { // spring-boot-starter 의존성 추가 implementation 'org.springframework.boot:spring-boot-starter-validation' implementation..
-
[Spring Boot] MockMvc 사용 시 한글이 깨지는 현상Spring Boot/기타 2021. 8. 29. 16:33
[원인] Spring Boot 2.2.0.RELEASE 부터 MediaType.APPLICATION_JSON_UTF8 Deprecated 되어 Content-Type: application/json;charset=UTF-8 요청에 대해 Content-Type: application/json 으로 응답하여 한글이 깨지는 현상이 발생합니다. [해결 방법] MockMvc 빌드 시 CharacterEncodingFilter 추가 @Autowiredprivate MockMvc mockMvc;@Autowiredprivate WebApplicationContext ctx;// JUnit5(@BeforeEach), JUnit4(@Before)@BeforeEachpublic void setup() { this.mockM..