@Configuration
public class MvcConfig extends WebMvcConfigurationSupport {
@Bean
public HiddenHttpMethodFilter httpMethodFilter() {
HiddenHttpMethodFilter hiddenHttpMethodFilter = new HiddenHttpMethodFilter();
return hiddenHttpMethodFilter;
}
}
'개인 참고용 복붙 저장소' 카테고리의 다른 글
파일 다운로드 컨트롤러 예시 (0) | 2022.11.23 |
---|---|
[Ajax] jquery를 이용한 ajax 예시 (0) | 2022.11.22 |
[Spring Boot] annotation 정리 (0) | 2022.11.17 |
[AOP] aop 설정 및 예제 코드 (0) | 2022.11.16 |
[Transaction] 트랜젝션 설정 코드 (0) | 2022.11.16 |