Hey just got a quick question, I'm using TomEE and finally got it somewhat working, I cant find my predetermined path in the browser. Anyone a clue on what I'm missing here?
The code for the path:
@Path("/hello")
public class HelloWorldController {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getHelloWorld() {
return "Hello, World!";
}
}