No handler found for path in Helidon

I have created a simple endpoint in Helidon: @GET @Path("/sampleString") @Produces(MediaType.APPLICATION_JSON) public Message getSampleString() { return "{‘Sample’:’String’}"; } The code complies and runs. But when I call: curl -i http://localhost:8080/sampleString I receive: No handler found for path: /sampleString What am I missing? >Solution : Most probably you are missing the META-INF/beans.xml file. It should be… Read More No handler found for path in Helidon