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 | 31 |
Tags
- Proxy
- Android
- 그리디
- jpa
- db
- SpringBoot
- springdatajpa
- java
- Spring Boot
- 인프런
- JPQL
- 알고리즘
- 스프링 핵심 기능
- http
- 백준
- Greedy
- 스프링 핵심 원리
- 자바
- Thymeleaf
- AOP
- transaction
- Servlet
- Exception
- QueryDSL
- kotlin
- pointcut
- 스프링
- 김영한
- JDBC
- spring
Archives
- Today
- Total
목록ConditionalGenericConverter (1)
개발자되기 프로젝트
[TypeConverter] Type Converter
타입 컨버터를 사용하려면 org.springframework.core.convert.converter.Converter 를 구현 ㅋㅋㅋㅋ Converter라는 인터페이스가 너무 많음.. 조심 ㅎㅎ 1. String -> Integer import lombok.extern.slf4j.Slf4j; import org.springframework.core.convert.converter.Converter; @Slf4j public class StringToIntegerConverter implements Converter { @Override public Integer convert(String source) { log.info("convert source= {}", source); return Integer..
인프런/[인프런] 스프링 MVC 2
2021. 10. 1. 22:25