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)
Get multiple RequestParam of one variable
I'm trying to build a multifunctional search method using MongoTemplate, Query and Criteria.
Here is my RequestMapping for variable search:
public Page<Users>getUsers(
@RequestParam(...
M G
Votes: 0
Answers: 2
SpringBoot 2.6.2 and form data
I am experimenting with a controller endpoint that looks like this:
@PostMapping("login")
fun login(
@RequestParam username: String,
@RequestParam password: String): ResponseEntity&l...

Sjoerd222888
Votes: 0
Answers: 1
Access @PathVariables from parent's @RequestMapping
I'm trying to access the @PathVariables defined in "MyClass"'s @RequestMapping parent.
Simplified screnario:
@RestController
@RequestMapping(value = "some/path/{with}/{multiple}/{variab...
just_do_IT
Votes: 0
Answers: 1
Error Http Post - Spring - @RequestMapping - @Controller
I´ve read a lot but I did not find any good answers regarding to my problem.
Indeed, this my class :
@Controller
public class ServletController {
@RequestMapping(value = {"", "/tes...
RaphaelB
Votes: 0
Answers: 1