일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 개미수열
- jsr303
- HTTP
- 알고리즘
- 브로틀리
- cross parameter
- 리얼월드HTTP
- 이렇게살아야되나자괴감이
- LastModified
- 워드프레스
- 클래스레벨밸리데이션
- cache-control
- 스프링
- 지뢰찾기
- Spring
- 지수반등
- i18n
- 랜선아미안해
- kotliln
- etag
- jsr380
- brotli
- 알게뭐냐
- Kotlin
- 코드스피츠
- Today
- Total
목록분류 전체보기 (267)
취미개발 블로그와 마음수양
contextConfigLocation classpath:/META-INF/spring/beans-biz.xml org.springframework.web.context.ContextLoaderListenerdispatcherServletorg.springframework.web.servlet.DispatcherServletcontextConfigLocationclasspath:/META-INF/spring/beans-webmvc.xml1 dispatcherServlet/defaultHtmlEscapetrueencodingFilterorg.springframework.web.filter.CharacterEncodingFilterencodingUTF-8 encodingFilter/*
public enum Level {GOLD(3, null), SILVER(2, GOLD), BASIC(1, SILVER); private final int value;private final Level next; Level(int value, Level next) {this.value = value;this.next = next;} public int intValue() {return value;} public Level nextLevel() {return this.next;} public static Level valueOf(int value) {switch (value) {case 1:return BASIC;case 2:return SILVER;case 3:return GOLD;default:thro..
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
로 읽어와서 밸류로 삽입.
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;}}
서브라임 텍스트 View- Console import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print('Please restart Sublime Text to fi..