Simple Jbang demo1 app.
parent
1a55433a2f
commit
16576d8859
|
@ -0,0 +1,20 @@
|
||||||
|
///usr/bin/env jbang "$0" "$@" ; exit $?
|
||||||
|
//DEPS io.quarkus:quarkus-bom:2.4.0.Final@pom
|
||||||
|
//DEPS io.quarkus:quarkus-resteasy
|
||||||
|
|
||||||
|
import javax.enterprise.context.ApplicationScoped;
|
||||||
|
import javax.ws.rs.GET;
|
||||||
|
import javax.ws.rs.Path;
|
||||||
|
|
||||||
|
// @ApplicationPath("/hello")
|
||||||
|
@Path("")
|
||||||
|
@ApplicationScoped
|
||||||
|
public class App {
|
||||||
|
|
||||||
|
@GET
|
||||||
|
// @Path("/")
|
||||||
|
public String handleHello() {
|
||||||
|
return "OK";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
///usr/bin/env jbang "$0" "$@" ; exit $?
|
||||||
|
//DEPS org.wildfly.bom:wildfly-expansion:35.0.1.Final@pom
|
||||||
|
//DEPS jakarta.ws.rs:jakarta.ws.rs-api
|
||||||
|
//DEPS jakarta.enterprise:jakarta.enterprise.cdi-api
|
||||||
|
|
||||||
|
import jakarta.enterprise.context.*;
|
||||||
|
import jakarta.ws.rs.*;
|
||||||
|
import jakarta.ws.rs.core.*;
|
||||||
|
|
||||||
|
@ApplicationPath("/")
|
||||||
|
@ApplicationScoped
|
||||||
|
public class App extends Application {
|
||||||
|
|
||||||
|
@Path("/hello")
|
||||||
|
public String handleHello() {
|
||||||
|
return "OK";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
# Jbang demo
|
||||||
|
|
||||||
|
## How to install Jbang
|
||||||
|
|
||||||
|
1. Get it from https://sdkman.io/
|
||||||
|
2. Install with curl -s "https://get.sdkman.io" | bash
|
||||||
|
|
||||||
|
## How to run it
|
||||||
|
|
||||||
|
Without debugging
|
||||||
|
|
||||||
|
```
|
||||||
|
jbang App.java
|
||||||
|
```
|
||||||
|
|
||||||
|
with debugging
|
||||||
|
|
||||||
|
```
|
||||||
|
jbang --verbose run App.java
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue