All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jlot.test.TomcatRunThread Maven / Gradle / Ivy

package org.jlot.test;

import org.apache.catalina.startup.Tomcat;

public class TomcatRunThread extends Thread
{
	private Tomcat	tomcat;

	public TomcatRunThread ( Tomcat tomcat )
	{
		this.tomcat = tomcat;
	}

	@Override
	public void run ( )
	{
		tomcat.getServer().await();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy