1
我目前嘗試了灰熊框架2.3.6。 我使用以下行家依賴性:如何使用澤西灰熊2.3
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-framework</artifactId>
<version>2.3.6</version>
</dependency>
<dependency>
<groupId>org.glassfish.grizzly</groupId>
<artifactId>grizzly-http-server</artifactId>
<version>2.3.6</version>
</dependency>
我可以啓動一個服務器用下面的代碼例如:
HttpServer server = HttpServer.createSimpleServer();
try {
server.start();
addJaxRS(server);
System.out.println("Press any key to stop the server...");
System.in.read();
} catch (Exception e) {
System.err.println(e);
}
添加以下JAX-RS類別:
@Path("/helloworld")
public class HelloWorldResource {
@GET
@Produces("text/plain")
public String getClichedMessage() {
return "Hello World";
}
}
我的問題是:我該如何告訴grizzly將HelloWorldRessoruce添加爲JAX-RS資源?
不,灰熊和澤西島是分開的項目。 – rlubke
「my.resources」中放置了哪些選項? –
my.resources我用jax-rs註釋添加了我的休息服務類。你可以在這裏看到代碼:https://github.com/rsoika/ImixsCrypt/tree/master/imixs-crypt-privacy/src/main/java/org/imixs/crypt – Ralph