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
- Spring Boot
- 백준
- spring
- Servlet
- AOP
- QueryDSL
- Exception
- springdatajpa
- 스프링
- Proxy
- 그리디
- 스프링 핵심 기능
- SpringBoot
- transaction
- JDBC
- db
- http
- java
- pointcut
- 김영한
- Greedy
- kotlin
- 알고리즘
- 스프링 핵심 원리
- 자바
- jpa
- Android
- Thymeleaf
- 인프런
- JPQL
Archives
- Today
- Total
목록메시지 기능 (1)
개발자되기 프로젝트
Spring 메시지 소스 설정
1. Spring Message Source 설정 메시지 관리 기능을 사용하려면 스프링이 제공하는 MessageSource 를 스프링 빈으로 등록이 필요하다. MessageSource 는 인터페이스이다. 따라서 구현체인 ResourceBundleMessageSource 를 스프링 빈으로 등록하면 된다. 2. 직접 등록 @Bean public MessageSource messageSource() { ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource(); messageSource.setBasenames("messages", "errors"); messageSource.setDefaultEncoding("utf-8"); re..
인프런/[인프런] 스프링 MVC 2
2021. 9. 24. 12:08