일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SpringSource Tool Suite
- TextBox
- MANTIS
- varags
- 자바
- decompiler
- 웹뷰
- C#
- Eclipse
- javascript
- Web Service
- 웹 서비스
- Maven
- scrollView
- asp.net
- MSsql
- Java
- Redirect
- html
- STS
- 자바스크립트
- 이클립스
- Bootstrap
- WebView
- 안드로이드
- MS-SQL
- Apache Lucene
- 컬럼명
- jsp
- Android
- Today
- Total
목록분류 전체보기 (286)
bboks.net™
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..
포트 확인 PID 찾기 프로세스 죽이기 (관리자 권한으로 실행) [출처] Windows 사용 중인 포트 확인 후 죽이기
Every once in a while I run across an SSL Cert with an included password. Although the security is great automating an environment or an Apache restart with required interaction is problematic. Here is an example of the interaction with a password included SSL Cert:---------------------------------------------------------------[root@w2 conf.d]# /etc/init.d/httpd restartStopping httpd: [ OK ]Star..
1. 이미지를 load하는 asynctask 추가 private class DownloadImageTask extends AsyncTask { ImageView bmImage; public DownloadImageTask(ImageView bmImage) { this.bmImage = bmImage; } protected Bitmap doInBackground(String... urls) { String urldisplay = urls[0]; Bitmap mIcon11 = null; try { InputStream in = new java.net.URL(urldisplay).openStream(); mIcon11 = BitmapFactory.decodeStream(in); } catch (Exceptio..