일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 웹 서비스
- Web Service
- Android
- Java
- 컬럼명
- asp.net
- Eclipse
- STS
- jsp
- C#
- scrollView
- javascript
- WebView
- 안드로이드
- Maven
- MS-SQL
- Apache Lucene
- MSsql
- 자바스크립트
- html
- decompiler
- varags
- Bootstrap
- SpringSource Tool Suite
- MANTIS
- 이클립스
- 웹뷰
- 자바
- Redirect
- TextBox
- Today
- Total
목록Java/Spring Framework (3)
bboks.net™
isAuthenticated() Returns true if the user is not anonymous isFullyAuthenticated() Returns true if the user is not an anonymous or a remember-me use [출처] Difference between isAuthenticated and isFullyAuthenticated
ServiceA에 @Transactional 설정. ServiceB에 @Transactional 설정.Controller -> ServiceA -> ServiceB 호출.ServiceB에서 exception throw, ServiceA에서 try-catch로 예외를 잡아서 처리.Controller에서 "transaction rolled back because it has been marked as rollback-only" 예외 발생.구글링 결과 propagation required가 문제(스프링은 기본값으로 required).결과적으로 ServiceB의 @Transactional을 삭제. 정상적으로 동작하는 것 확인! [참고] Exception on batch processing UnexpectedRo..
@Scheduled(cron = "0 50 21 * * 1-5") //월~금까지 오후 9시50분에 실행 public void scheduleMethod() { something(...); } Cron 표현식총 7개의 필드를 가지며 마지막 필드(년도)는 생략 가능필드 이름 허용 값 초(seconds) 0~59 분(minutes) 0~59 시(hours) 0~23 날(day of month) 1~31 달(month of year) 1~12 요일(day of week) 0~6 (0=일요일) 년도(year) optional 빈값(공백) 1970~2099) Cron 표현식 특수문자표현식 설명 예시 * 모든 값 - 범위 * 10-13 * * * *매시 10, 11, 12, 13분에 실행 , 특정 값 * * 10,1..