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
- Proxy
- 인프런
- transaction
- Android
- JDBC
- 자바
- 스프링 핵심 원리
- spring
- 백준
- db
- Thymeleaf
- Servlet
- 김영한
- 알고리즘
- kotlin
- java
- JPQL
- 스프링 핵심 기능
- http
- Greedy
- QueryDSL
- AOP
- springdatajpa
- Spring Boot
- SpringBoot
- pointcut
- jpa
- 스프링
- Exception
- 그리디
Archives
- Today
- Total
목록get.message (1)
개발자되기 프로젝트
Spring 메시지 소스 활용
1. MessageSource Interface public interface MessageSource { String getMessage(String code, @Nullable Object[] args, @Nullable String defaultMessage, Locale locale); String getMessage(String code, @Nullable Object[] args, Locale locale) throws NoSuchMessageException; } code와 일부 파라미터로 메세지를 읽어올 수 있는 기능을 제공 2. 예시-기본 앞서 messages.properties에 아래와 같이 등록했다. 여기서 hello는 code, 안녕은 message 이다. hello=안녕 hello..
인프런/[인프런] 스프링 MVC 2
2021. 9. 24. 13:06