일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 웹 서비스
- Redirect
- Eclipse
- varags
- jsp
- Java
- TextBox
- STS
- MS-SQL
- SpringSource Tool Suite
- 자바스크립트
- asp.net
- MANTIS
- WebView
- Web Service
- Bootstrap
- Android
- 이클립스
- 웹뷰
- decompiler
- C#
- Apache Lucene
- 안드로이드
- 자바
- javascript
- 컬럼명
- html
- scrollView
- Maven
- MSsql
- Today
- Total
목록Java (59)
bboks.net™
Centos 7 기준 (7 미만에서는 다른 방법으로 등록)/etc/systemd/system 으로 이동 [앱이름].service 파일 생성 (예. bboks.service) service 파일 내용[Unit]Description=서비스 명 [Service]User=centosWorkingDirectory=/home/centos/앱 디렉터리ExecStart=/usr/bin/java -Djsse.enableSNIExtension=false -Dspring.profiles.active=production -jar /home/centos/앱 디렉터리/앱.jarSuccessExitStatus=143TimeoutStopSec=10Restart=on-failureRestartSec=5 [Install]WantedBy..
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
다른 서비스와 연동중인 서버에 새로운 버전을 배포할 때마다 서버를 내리기 부담스러워 hot deploy를 할 수 있는 방법을 고민하다가 Parallel Deployment를 알게되었다. tomcat parallel deployment는 tomcat7부터 지원한다. 자세한 내용은 여기에서 확인 우선 parallel deploy 기능을 사용하기 위해서는 server.xml에 unpackWARs="ture" autoDeploy="true"로 설정이 되어 있어야 한다. (7부터는 자동으로 설정이 되어 있는 듯) 1. 기존 서비스(test.war)가 운영중인 상태2. webapps에 test##2.war를 배포3. test##2.war 파일의 압축이 풀리면서 test##2라는 디렉토리 생성4. 해당 서비스로 접속..
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..