std::vector<std::string> split(const std::string& s,char seperator){ std::vector<std::string> output; std::string::size_type prev_pos =0, pos =0;while((pos = s.find(seperator, pos))!=…
- Category Archives 비공개
-
-
JDBC Connection Pool Timeout Errors
If the database server times out a connection, the connection pool on Tomcat side would not be aware of its disconnection. If the database server times out a connection, the connection pool on Tomcat…
-
How to set default session timeout in Linux
How to set default session timeout in Linux My DC operation guys access Linux servers on a daily basis but somehow they never remember to log out. This is a security risk as anyone could gain access t…
-
Tomcat MySQL Connection – Using JDBC to Connect Tomcat to MySQL
Tomcat MySQL Connection – Using JDBC to Connect Tomcat to MySQL Stumped by Tomcat JDBC connections? Can’t get your head around MySQL drivers, connection pools, and JNDI resources? This art…
-
Tomcat JDBC Connection Pool configuration for production and development
Tomcat JDBC Connection Pool configuration for production and development As mentioned in the post Install Eclipse Kepler 64 bit on Windows 7 64 bit, Podcastpedia.org uses Apache Tomcat 7 as applicatio…
-
Simple Spring Quartz Web App with Maven and Eclipse
Simple Spring Quartz Web App with Maven and Eclipse 1. Create a Maven Web App project with Eclipse File -> New -> Project -> Other -> Maven Project -> Next -> Next -> You should b…
-
성공한 사람이 절대 하지 않는 9가지 ‘금지어’
Social News 인사이트 June 08. 2014. 05:49 pm 성공한 사람이 절대 하지 않는 9가지 ‘금지어’ 1799 | 1 1502 297 Print Keyword : 성공 스티브 잡스 포브스 자기 확신 금지어 애플의 창업자 故 스티브 잡스(좌)와 빌 게이츠 마이크로소프트 창업자. ⓒJoi/flickr 다른…
-
10 Open Source Blogging Platforms for Developers
Mainstream blogging platforms like WordPress, Blogger, Tumblr, etc. aren’t designed for hackers. They’re encumbered by features developers just don’t need or want. And, out of the box, the popular blo…
-
Spring Framework + Akka Actor + Maven 사용하기
Spring Framework + Akka Actor + Maven 사용하기 개발 중에 요청에 대한 로그를 남기는 부분이 있는데 로거를 사용하기에 부족한 부분이 있고 async로 처리해야 하는 부분이 생겨 akka actor를 사용하여 구현하게 되었다. akka.io 사이트의 메뉴얼을 확인해보면.. Spring 연계 개발을 1.3.1까지만 지원하고 있고 다…
-
Maven을 넘어 Gradle로 가자
Maven을 넘어 Gradle로 가자. 프로그래밍 by 권남 2012/10/14 21:33 kwon37xi.egloos.com/4747016 덧글수 : 29 Maven을 써 본 사람들은 대부분 느끼리라 생각하지만 매우 경직돼 있고 그로인해 무언가 Maven이 기본 지원하지 않는 빌드 과정을 추가해야 할 경우 고생이 이만 저만이 아니다. 이에, 요즘 Mave…