tomcat
EditPerformance
https://www.slideshare.net/Paganel/tomcatx-performancetuning
https://medium.com/netflix-techblog/tuning-tomcat-for-a-high-throughput-fail-fast-system-e4d7b2fc163f
- acceptCount 에 대해 자세히 설명 - 28 페이지에 NIO Connector 관련https://medium.com/netflix-techblog/tuning-tomcat-for-a-high-throughput-fail-fast-system-e4d7b2fc163f
- 앞 단에 Apache Httpd 제거
EL
tomcat 6에서는 EL 관련 라이브러리를 두가지를 사용
- el-api.jar (EL 2.1 API)
- jasper-el.jar (Jasper 2 EL implementation)
그 반면 tomcat 5.5에서는 apache commons에 있는 EL을 사용 * http://apache.tt.co.kr/tomcat/tomcat-5/v5.5.29/RELEASE-NOTES * ,+2nd+Edition/9780596101060/ch04.html#benchmark_results_for_serving_small_tex
Admin
Tomcat context
Monitoring
- [jconsole JConsoled을 사용해서 Tomcat 5.5 모니터링 하기]
- http://www.lambdaprobe.org/d/index.htm
- Memory leaks where the classloader cannot be garbage collected
Tomcat 7
Tomcat classloader
Tomcat cookie 관련 버그
설정구성
Security
- <a href="http://mail-archives.apache.org/mod_mbox/www-announce/201201.mbox/%%3Ca%20href=" mailto:3c4f155cdc.8050804@apache.org"="">3C4F155CDC.8050804@apache.org%3E">http://mail-archives.apache.org/mod_mbox/www-announce/201201.mbox/%3C4F155CDC.8050804@apache.org%3E
- <a href="http://mail-archives.apache.org/mod_mbox/www-announce/201201.mbox/%%3Ca%20href=" mailto:3c4f155ce2.3060301@apache.org"="">3C4F155CE2.3060301@apache.org%3E">http://mail-archives.apache.org/mod_mbox/www-announce/201201.mbox/%3C4F155CE2.3060301@apache.org%3E
SSL
- Tomcat에 SSL 인증서 설치하기 : http://whiteship.me/?p=13548
Tomcat maven plugin
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat6-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.1</version>
<configuration>
<path>/</path>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<path>/</path>
</configuration>
</plugin>
Embeded WAS
UI 테스트에 Embeded Tomcat을 사용한 사례 (정상혁)
- [WebApplicationServer.java](https://github.com/benelog/tomcat-bed/blob/master/tomcat-bed-test/src/test/java/net/benelog/tomcatbed/WebApplicationServer.java)