python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Run two Spring endpoints at the same time
I have a Controller class with two endpoints:
@GetMapping("/refresh")
public String refresh() {
// does something
}
@GetMapping("/watch")
public String watch() {
// does ...

Okabe
Votes: 0
Answers: 1
Spring-Boot Jackson Parsing Error While returning Basic Response
Im trying to return only Basic ResponseEntity in my Application Noticing Jackson Parsing Error. When i do the same in sample Spring boot application , it works fine , not able to figure out what can b...
dheeraj
Votes: 0
Answers: 2
I am facing an issue wgere empty string getting converted to null when passed in request body with RestController SpringBoot
I am facing a strange issue, I have a controller and I have a method which handles put request. The code for controller looks like this:
@RestController
@RequestMapping("/test")
public clas...
Aman Kush
Votes: 0
Answers: 0
Are nested static classes similar to non-static classes for REST request-body?
I am using a Spring Boot to design REST API. I want to know what difference it will make while using nested classes in request body?
REST Endpoint:
@PostMapping("/create")
public void (@Requ...
JulieTheCoder
Votes: 0
Answers: 1