I have Vaadin v23.x on Quarkus application forked from: https://github.com/vaadin/base-starter-flow-quarkus/
I need to have a simple API endpoint as well
@Path("/hello")
public class GreetingResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "Hello from RESTEasy Reactive";
}
}
Right now when I am loading http://localhost:8080/hello
I am getting Vaadin error.
Does someone know how to fix this?