일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 완전탐색
- oracle
- 다리 만들기
- 구현
- 탐색
- 빅데이터
- 그리디
- Java
- 백준
- 다이나믹프로그래밍
- 프로그래머스
- 문자열
- BufferedReader
- 아스키코드
- Stack
- 브루트포스
- DP
- Queue
- SQL
- 백트래킹
- BFS
- Python
- 배열
- dfs
- 스택
- LIS
- 새벽코딩
- 시뮬레이션
- 알고리즘
- HashMap
- Today
- Total
목록Spring (2)
새벽코딩

Spring Boot가 아닌 Spring Legacy 환경에서의 Redis Cache 연동 및 공통코드, 메시지를 관리해보자. 전체환경 [java] jdk : 1.8 [apache-tomcat] apache-tomcat : 9.0.44 [spring] spring-core : 5.1.5.RELEASE spring-webmvc : 5.1.5.RELEASE spring-context : 5.1.5.RELEASE spring-tx : 5.1.5.RELEASE spring-aop : 5.1.5.RELEASE [redis] spring-data-redis : 2.2.1.RELEASE lettuce-core : 6.0.2.RELEASE Redis.config import org.springframework.bean..

I will memo about 'SpringBoot' annotations.. I used to use annotation without thinking about it, but I felt the need to organize it. 1. @Bean first thing is about '@Bean' @Bean은 메소드 레벨에서 사용하는 어노테이션으로, 스프링 컨테이너에 의해서 관리되어지는 bean을 만든다. 또한, XML코드에서 사용하는 태그를 대체할 수 있다. example: @Bean public BeanTest beanTest(){ return new beanTest(); } 2. @Service @Service는 클래스 레벨에서 사용하는 어노테이션으로, 주로 서비스 클래스를 명시해주는 용도로..