일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jpa
- QueryDSL
- 김영한
- 스프링 핵심 원리
- db
- 알고리즘
- Thymeleaf
- 그리디
- 인프런
- Greedy
- SpringBoot
- pointcut
- transaction
- JDBC
- 스프링
- spring
- kotlin
- Spring Boot
- AOP
- Exception
- 백준
- http
- 스프링 핵심 기능
- java
- Servlet
- JPQL
- Android
- Proxy
- springdatajpa
- 자바
- Today
- Total
목록Interface (2)
개발자되기 프로젝트
1. ex) 문자 -> 숫자 @RestController public class HelloController { @GetMapping("/hello-v1") public String helloV1(HttpServletRequest request){ String data = request.getParameter("data"); //문자 타입 조회 Integer integer = Integer.valueOf(data); //숫자 타입으로 변경 System.out.println("integer = " + integer); return "ok"; } } 분석 localhost:8080/hello-v1?data=10 String data = request.getParameter("data") HTTP 요청 파라미..
The Stpring team recommends that you annotate only concrete classeds with the @Transactinal annotation as apposed to annotating interfaces. you certainly can place the @Transactional annotation on an interface( or an interface method), but this works only as you would expect it to if you use inferface-based proxies. 1. @Transactional은 interface보다는 구체 class에 사용하는 것을 권장 2. interface는, interface-ba..