如何在apache tomcat服务器上运行java应用程序?我已经尝试编辑xml文件,并尝试制作一个war文件并将其放在tomcats webapp目录中。
方法测试和测试2是来自我所做的简单java应用程序的方法。 我有以下课程
@Path("/hello")
public class HelloWorldService {
RemoteEV3 ev3;
static RMIRegulatedMotor motorA;
static boolean stop=false;
@Path("{f}")
@GET
@Produces("application/json")
public Response DeployRobot(@PathParam("f") String f) throws JSONException, NotBoundException, IOException {
String r="run";
if(f.equals(r)) {
test();
} else {
test2();
}
return Response.status(200).entity("").build();
}
public static void test() throws IOException, IOException, NotBoundException {
RemoteEV3 ev3=new RemoteEV3("10.0.1.1");
ev3.isLocal();
// Open Ports
ev3.getPort("A");
//create motors
if(motorA==null){motorA=ev3.createRegulatedMotor("A", 'L');}
//move motors, grab,suppress
while (!stop){
motorA.forward();
grab();
motorA.stop(true);
Sound.twoBeeps();
stop=true;
System.out.println("Robot is moving!");
}
if (stop){
motorA.close();
}
}
public static void test2(){
System.out.println("|*** Move Robot ****|");
}
public static void grab(){
try{
Thread.sleep(5000);
}
catch(InterruptedException e){
e.printStackTrace();
}
}
}
答案 0 :(得分:0)
要在Apache tomcat上运行应用程序,您可以访问:
http://localhost:8080/manager
管理您的网络应用程序,部署它们添加.war文件