- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
목록Java (95)
민서네집
Apache Tomcat 7 JNDI 설정 http://blog.naver.com/doghoya/70124381693 위 블로그를 보고 STS 안의 서버 Tomcat 7 에서 설정했다. 다만, 아래에서 url="jdbc:oracle:thin:@아이피:포트:스키마" 에서 스키마 대신 SID 를 적어줘야 된다. [참고]http://people.apache.org/~fhanik/jdbc-pool/jdbc-pool.html
Spring Framework 를 사용하면 아래와 같이 하면 된다고 하는데, 안해봤다. http://simsimjae.tistory.com/8 Spring Framework의 Handler Interceptor에서 postHandle() 메서드에서 아래와 같이 했다. // Cache 방지 (2017-10-22)if("HTTP/1.1".equals(request.getProtocol())) {response.setHeader ("Cache-Control", "no-cache, no-store, must-revalidate");} else {response.setHeader ("Pragma", "no-cache");}response.setDateHeader ("Expires", 0); [출처] https:/..
Eclipse - 추천 Plugin들 http://hochulshin.com/java-eclipse-plugins/ EasyShellhttp://marketplace.eclipse.org/content/easyshell?mpc=true&mpc_state=#group-screenshots Clippets - User Guidehttp://marian.schedenig.name/wp-content/static/clippets_userguide/#editing-clippets 단축키가 무엇인지 알 수 있다. More Clipboard quick guidehttp://moreclipboard.sourceforge.net/docs/#usage 단축키 정보를 알 수 있다. 이클립스(혹은 STS)에서 플러그인을 설치..
Technical details of serve modules without publishing in Eclipse WTP and Tomcat? https://stackoverflow.com/questions/15575302/technical-details-of-serve-modules-without-publishing-in-eclipse-wtp-and-tomcat [발췌] The idea is to serve a web application directly from the scattered directory structure of the development workspace, without packaging modules into JARs which then end up in WEB-INF/libin..
Serve modules without publishing 를 체크하고 에러 날 때 해결책 Servers 에서 설정한 톰켓서버 더블클릭 하고... Server modules without publishing 체크한 위에 보면... Open launch configuration 이라고 있는데... 클릭해서 창을 띄운 후 Classpath 탭에 Bootstrap Entries 에서 Add External JARs... 로 톰캣 디렉토리 lib 폴더에 있는 servlet-api.jar 를 추가 하니까... 해결(?) 되네요... [출처] https://okky.kr/article/171143 Classpath 탭에 Bootstrap Entries 에서 Add External JARs... 로 톰캣 디렉토리 l..
Eclipse 에서 이미 기존의 로컬 git Repository가 있는 상황에서 git으로 관리되는 새 프로젝트를 만들고 싶었다. How to create new project from GIT repo using Eclipse EGithttp://stackoverflow.com/questions/9192125/how-to-create-new-project-from-git-repo-using-eclipse-egit 결국 답은 이건가... Creating a project in the ~/git/repo-dir/project-sub-dir then Team -> Share Project -> git did it for me. Git Local Repository 안에 프로젝트를 생성하고, 이클립스에서 S..
TDD3 - 이클립스에서 TDD를 위한 static import 설정 https://slipp.net/wiki/pages/viewpage.action?pageId=950355 JUnit Test시에 Static Import할 기본 항목들http://kwonnam.pe.kr/wiki/java/junit/staticimports Eclipse에서 테스트 코드 작성을 편하게 하는 설정 by 정상혁 http://blog.benelog.net/2688165
https://www.youtube.com/playlist?list=PLHpaQi-LiUCx-vcbcnpU5Tzv2X99WCowN 전체 동영상 목록https://www.youtube.com/channel/UChWUWqURDfGFHpCIeLO8jZA
Decompile Java code in the cloudhttp://www.javadecompilers.com/ Java 8까지 지원하는 최신 소스까지 Decompile 이 잘 된다.( Decompile 해보면 annotation 도 보인다. )