일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 단축키
- VirtualBox
- Windows
- web.xml
- Windows 10
- resource
- Eclipse
- bash
- xargs
- Mac
- plugin
- IntelliJ
- lsof
- import
- grep
- context
- GIT
- netsh
- Quartz
- ssh
- tomcat
- JavaScript
- 네트워크
- 줄바꿈 문자
- port
- Source
- maVen
- vscode
- find
- profile
- Today
- Total
목록Web & WAS (25)
develog
/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://..
http://commons.apache.org/proper/commons-dbcp/configuration.html
Server version: Apache/2.2.17 (Unix)Apache Tomcat/6.0.35java version "1.6.0_31"
Tomcat ROOT/lib/tomcat-dbcp.jar /WebContent/META-INF/context.xml 수정 server project - context.xml 수정 JNDI 리소스 가져오기 Context initCtx = new InitialContext(); Context envCtx = (Context)initCtx.lookup("java:/comp/env"); DataSource ds = (DataSource)envCtx.lookup("jdbc/testdb"); Connection conn = ds.getConnection(); System.out.println("conn : " + conn);
/apache/bin/apachectl configtest