본문 바로가기

반응형

분류 전체보기

(123)
[200623.82일차] Spring 12 - Scheduler, Ajax, RestController 더보기 Scheduler 시간 설정 ,초 0-59 , - * / 분 0-59 , - * / 시 0-23 , - * / 일 1-31 , - * ? / L W 월 1-12 or JAN-DEC , - * / 요일 1-7 or SUN-SAT , - * ? / L # 년(옵션) 1970-2099 , - * / * : 모든 값 ? : 특정 값 없음 - : 범위 지정에 사용 , : 여러 값 지정 구분에 사용 / : 초기값과 증가치 설정에 사용 L : 지정할 수 있는 범위의 마지막 값 -> 안되는듯(For input string: "L" 에러 발생) W : 월~금요일 또는 가장 가까운 월/금요일 # : 몇 번째 무슨 요일 2#1 => 첫 번째 월요일 예제) Expression Meaning 초 분 시 일 월 주(년) ..
[200622.81일차] Spring 11 - AOP 더보기 참고 https://shlee0882.tistory.com/206 Spring AOP, Aspect 개념 특징, AOP 용어 정리 1. Spring AOP의 핵심기능과 부가기능 - 업무 로직을 포함하는 기능을 핵심 기능(Core Concerns) - 핵심 기능을 도와주는 부가적인 기능(로깅, 보안)을 부가기능(Cross-cutting Concerns) 이라고 부른다. 2. AOP.. shlee0882.tistory.com https://jaehun2841.github.io/2018/07/20/2018-07-20-spring-aop2/#aop%EC%9D%98-%EB%93%B1%EC%9E%A5%EB%B0%B0%EA%B2%BD Spring AOP (2) | Carrey`s 기술블로그 앞선 포스팅에선 간..
[200619.80일차] Spring 10 - MyBatis MyBatis 기본틀 pom.xml org.mybatis mybatis-spring 1.2.2 org.mybatis mybatis 3.2.3 org.springframework spring-jdbc 4.1.4.RELEASE jdbc-config.xml web.xml encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 forceEncoding true encodingFilter /* mybatis-config.xml & mapper.xml Table 생성 create table mybatis_test( num number, name varchar2(30), mydate date ); insert into m..
[200618.79일차] Spring 9 - 어노테이션 이용 (@Autowired) & bean 더보기 info 안내문 띄우기 Locale locale; logger.info("Controller 생성자 실행", this.locale); 해당 경로의 xml을 받아옴 DI (Dependency Injection) : 의존성 주입 @Autowired => 의존 객체 자동 주입(Automatic Dependency Injection) => 주입하려고 하는 객체의 타입이 일치하는지를 찾고 객체를 자동으로 주입함 => 속성, 새터 그리고 생성자 모두와 연결 할 수 있음 @Autowired로 연결할 객체가 없으면 오류가 남 => BeanCreationException 오류 org.springframework.beans.factory.BeanCreationException: 어노테이션을 붙여 객체를 생성=> A..

반응형