Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 254 Bytes

Readme.md

File metadata and controls

12 lines (9 loc) · 254 Bytes

Apache Tomcat

Usage

final TomcatConfiguration conf = TomcatConfiguration.builder().directory($TOMCAT_HOME).xmx("512m").build();

try (Container cont = new TomcatContainer<>(conf)) {
	cont.start()
}