일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자바
- MVC
- ps
- spring
- javascript
- Controller
- AWS
- MariaDB
- 디자인패턴
- React
- 프로젝트
- spring boot
- 백준
- 팀프로젝트
- gradle
- IntelliJ
- coding test
- 스프링
- 취준생
- 입출력
- Project
- 코딩테스트
- JPA
- jdk11
- 자취
- JDK
- 코테
- 공유DB
- Java
- SpringBoot
Archives
- Today
- Total
Tech Collection
[Rest Controller] @PutMapping, @DeleteMapping 동작하지 않을 때 본문
728x90
반응형
SpringBoot를 구동하는 Controller에 Bean을 주입하면 된다.
@EnableJpaAuditing
// PutMapping, DeleteMapping을 사용하기 위해 Bean 주입
@Bean
public HiddenHttpMethodFilter hiddenHttpMethodFilter() { return new HiddenHttpMethodFilter(); }
: import org.springframework.web.filter.HiddenHttpMethodFilter; 를 import하면 된다.
예시 ->
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.web.filter.HiddenHttpMethodFilter;
@EnableJpaAuditing
@SpringBootApplication
public class CommunityApplication {
public static void main(String[] args) {
SpringApplication.run(CommunityApplication.class, args);
}
// PutMapping, DeleteMapping을 사용하기 위해 Bean 주입
@Bean
public HiddenHttpMethodFilter hiddenHttpMethodFilter() { return new HiddenHttpMethodFilter(); }
}
728x90
반응형
'Build > Note' 카테고리의 다른 글
[NoSQL] ElasticSearch 구축 #2 (0) | 2023.04.05 |
---|---|
[NoSQL] ElasticSearch 구축 #1 (0) | 2023.04.05 |
테스트 코드 작성하는 이유 (0) | 2021.03.20 |
[Thymeleaf] 기본 문법 (0) | 2021.02.18 |
[Thymeleaf] Gradle에 적용하기 (0) | 2021.02.18 |