Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- spring jwt
- HHH000104
- springboot maven plugin
- jpa pagination
- jwt token
- springboot jwt example
- JWT
- springboot jwt
- springboot-angular-jwt
- JPA
- docker mongodb install
- mongodb install ec2
- jvm 메모리 구조
- String Pool
- filter ordering
- spring filter ordering
- jvm 모델
- 기본 Manifest 속성이 없습니다
- docker mongodb
- jvm memory structure
- install mongodb docker
- Constants pool
- String Constants Pool
- spring-boot-maven-plugin
- string comparison
- jwt example
- intern
- jvm memory model
- angular jwt
- springboot mongodb config
Archives
- Today
- Total
개발블로그
ParameterDataTypeReader : Trying to infer dataType Warning 해결 본문
이는 서버를 부팅시킬 때 swagger에서 발생시키는 warning이다.
enum type을 request의 parameter로 받고자하지만, 명시하지 않을 때 위와 같은 warning이 발생한다.
따라서 @RequestParam 이라고 명시해주면 warning은 사라진다.
@GetMapping(...)
fun test(
@RequestParam statTarget: StatTarget
){...}
'Spring' 카테고리의 다른 글
Comments