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 |
Tags
- 스프링 핵심 기능
- Android
- springdatajpa
- Spring Boot
- transaction
- QueryDSL
- Thymeleaf
- Proxy
- pointcut
- 김영한
- Greedy
- http
- SpringBoot
- db
- java
- 그리디
- 백준
- Servlet
- kotlin
- 자바
- AOP
- 스프링 핵심 원리
- 인프런
- 스프링
- jpa
- JPQL
- 알고리즘
- Exception
- spring
- JDBC
Archives
- Today
- Total
목록타임리프 지역변수 (1)
개발자되기 프로젝트
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/pX0PU/btrfoStD0mW/8Aylu7Vi76RuAARU8RlyEK/img.png)
1. 변수 표현식 ${...} 해당 변수 표현식에는 SpringEL이라는 스프링에서 제공하는 표현식 사용 가능 2. 예제 2.1 controller User 생성 List 생성 Map 생성 @GetMapping("/variable") public String variable(Model model){ User userA = new User("userA", 10); User userB = new User("userB", 20); List list = new ArrayList(); list.add(userA); list.add(userB); Map map = new HashMap(); map.put("userA", userA); map.put("userB", userB); model.addAttribute("..
인프런/[인프런] 스프링 MVC 2
2021. 9. 18. 00:04