일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 랜선아미안해
- brotli
- HTTP
- Spring
- jsr380
- i18n
- 워드프레스
- 스프링
- 알게뭐냐
- 개미수열
- 브로틀리
- 지수반등
- 코드스피츠
- cross parameter
- 지뢰찾기
- LastModified
- 알고리즘
- 클래스레벨밸리데이션
- kotliln
- 이렇게살아야되나자괴감이
- Kotlin
- etag
- 리얼월드HTTP
- jsr303
- cache-control
- Today
- Total
목록FrameWork_ETC (41)
취미개발 블로그와 마음수양
로 읽어와서 밸류로 삽입.
CannotAcquireLockException 락(Lock) 획득 실패 ConcurrencyFailureException 동시 실행 시의 오류 DataAccessResourceFailureException 데이터 소스와의 연결에 실패 DataIntegrityViolationException 정합성 위반 오류 DeadlockLoserDataAccessException 데드락 발생 EmptyResultDataAccessException 가져오려는 데이터가 존재하지 않는다. IncorrectResultSizeDataAccessException 가져온 레코드의 수가 바르지 않다. OptimisticLockingFailureException 낙관적 락에 실패 perissionDeniedDateAccessExce..
Before - 조인포인트 앞에서 실행할 어드바이스After - 조인포인트 뒤AfterReturning - 조인포인트가 완전히 정상종료한 다음에 실행되는 어드바이스Around - 조인포인트 앞뒤AfterThowing - 조인포인트 에서 예외가 발생했을 때 AOP처리해도되는 것과 안되는 것이 있는데 안되는 것은 업무처리되는 것은 공통화처리(기반기술들)
bean xml 설정 public class MessageServiceImpl implements MessageService {private String message; public String getMessage() {return message;} public void setMessage(String message) {this.message = message;} } 어노테이션 설정 @Componentpublic class MessageServiceImpleAnnotation { @Value("#{msgProperties.message}")private String message;public String getMessage(){return message;}}
el
pom.xml 에서 시작-> web.xml -> dispatcher-servlet -> applicationContext.xml pom.xml 부분 org.springframework spring-context 4.0.1.RELEASE org.springframework spring-core 4.0.1.RELEASE org.springframework spring-webmvc 4.0.1.RELEASE mysql mysql-connector-java 5.1.28 commons-dbcp commons-dbcp 1.4 jstl jstl 1.2 org.springframework spring-jdbc 4.0.1.RELEASE commons-fileupload commons-fileupload 1.2.1 org...
web.xml에서는 dispatcher org.springframework.web.servlet.DispatcherServlet 1 dispatcher / /web-inf/dispatcher-servlet.xml 처리
web.xml에 이런 식으로 적어주면 된다~ encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 encodingFilter /*