...
| Code Block |
|---|
InstalledLocalContainer container = new Tomcat3xInstalledLocalContainer(
new TomcatStandaloneLocalConfiguration(new File("target/tomcat3x")));
container.setHome(new File("c:/apps/jakarta-tomcat-3.3.2"));
Map props = new HashMap();
props.put("mypropery", "myvalue");
container.setSystemProperties(props);
container.start();
|
...