일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- xargs
- 단축키
- bash
- find
- profile
- ssh
- tomcat
- resource
- lsof
- Mac
- Quartz
- web.xml
- VirtualBox
- 줄바꿈 문자
- Eclipse
- context
- IntelliJ
- netsh
- GIT
- Windows
- plugin
- vscode
- JavaScript
- import
- 네트워크
- Windows 10
- grep
- maVen
- port
- Source
- Today
- Total
목록분류 전체보기 (1764)
develog
private static void setJndi() throws Exception { SimpleNamingContextBuilder builder = new SimpleNamingContextBuilder(); builder.activate(); JndiTemplate jt = new JndiTemplate(); jt.bind("jdbc/myDB", getMyDataSource());} private static DriverManagerDataSource getMyDataSource() { DriverManagerDataSource ds = new DriverManagerDataSource(); ds.setDriverClassName("oracle.jdbc.driver.OracleDriver"); d..
public class Service { private Dao dao;public void setDao(Dao dao) {this.dao = dao;}private void template(IService service, Map param) {Connection conn = null;try {conn = ConnectionManager.getConnection();service.invoke(conn, param);} catch (Exception e) {e.printStackTrace();} finally {ConnectionManager.closeConnection(conn);}} public void insertUser(String userSeq) {Map param = new HashMap();pa..
/META-INF/context.xml 파일 설정http://tomcat.apache.org/tomcat-5.5-doc/config/context.html#Resource_Definitions
● 에러메시지2013. 7. 16 오후 2:03:35 org.apache.tomcat.util.http.Parameters processParameters정보: More than the maximum number of request parameters (GET plus POST) for a single request ([10000]) were detected.Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector. ● 수정, server.xml (maxParameterCount 값 수정, default 10000) ● 참고http://..
SELECT LEVELFROM DUALCONNECT BY LEVEL
import java.util.concurrent.Future; import com.ning.http.client.AsyncHttpClient;import com.ning.http.client.AsyncHttpClientConfig;import com.ning.http.client.Response; public String send(String url) { try { AsyncHttpClientConfig config = new AsyncHttpClientConfig.Builder().setRequestTimeoutInMs(1 * 1000).build(); AsyncHttpClient async = new AsyncHttpClient(config); Future future = async.prepareG..