我按照教程here
而且由于某种原因我无法运行该示例......在运行服务后输入 url http://localhost:8080/greeting/时出现 404 错误。
我正在使用 Intellji EE 14 和 TomEE 7。
这是我的代码:
Greeter.java:
package org.mybiz;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
@Path("greeting")
public class Greeter {
@GET
public String sayHi() {
return "Hi!!";
}
}
网页.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
</web-app>