Use this tag for question about the REST architectural style used in Spring framework
I'm working on rest api with spring boot. I need to log all requests with input params (with methods, eg. …
java spring logging spring-restI am trying to read HTTP headers in Spring based REST API. I followed this. But I am getting this …
java spring rest spring-restcontroller spring-restI have some Spring RESTful (RestControllers) web services with no web.xml and I am using Spring boot to start …
spring-mvc spring-restcontroller spring-restAn Abstract controller class requires List of objects from REST. While using Spring RestTemplate its not mapping it to required …
java resttemplate spring-rest spring-webI am writing a Rest client to post JSON data using Spring RestTemplate. Using POSTMAN and following JSON data in …
java spring rest resttemplate spring-restAnybody know why it doesn't work? Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled. 06/04/2017 14:11:24.732 …
java sql-server spring-boot spring-data-jpa spring-restI would like to make a simple HTTP POST using Spring RestTemplate. the Wesb service accept JSON in parameter for …
spring web-services rest spring-mvc spring-restI currently have this RequestMapping where I use validation through a regular expression: @RequestMapping(value = "/example/{id}", method = GET) public …
java spring validation spring-boot spring-restHow can I get the raw json string from spring rest template? I have tried following code but it returns …
java json spring spring-mvc spring-restMy object: @Entity @Table(name="user") public class User { @Id @Column(name="uid") @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; //…
java rest jpa spring-boot spring-rest