Re: How to let NetBeans 8.2 show rest endpoints

2017-12-29 Thread Michael Andrews
NB will show them for JAX-RS endpoints. Spring MVC (which is what is being used in Spring Boot) is not JAX-RS compliant. They do their own thing. Use Grizzly Jersey or something that implements the JAX-RS API to see them in the project view. You can use Spring with Jersey. > On Dec 29, 2017, a

Re: How to let NetBeans 8.2 show rest endpoints

2017-12-29 Thread Geertjan Wielenga
Presence of javax.ws.rs.Path annotation on class signature determines whether an endpoint is shown in the "RESTful Web Services" node in the Projects window. Gj On Fri, Dec 29, 2017 at 10:58 AM, Diederick de Vries wrote: > Hi, > > I'm working on a Spring Boot project. I know that NetBeans 8.2 ca

How to let NetBeans 8.2 show rest endpoints

2017-12-29 Thread Diederick de Vries
Hi, I'm working on a Spring Boot project. I know that NetBeans 8.2 can show (restful) http endpoints in the projects tree, but somehow they're not showing in this project. I think I'm using a standard way to formulate my endpoints: @RequestMapping(value = "/add", method = RequestMethod.PUT, cons