D
D
Dmitry Belousov2017-03-19 20:28:36
Java
Dmitry Belousov, 2017-03-19 20:28:36

How to make a link multilevel?

How to make a link like: site\profile\id1321
or something else

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Eugene Khrustalev, 2017-03-19
@dreven

Add controller with RequestMapping=/profile

@RequestMapping("/profile")
public class ProfileController {
    
    @GetMapping("/{id}")
    public ModelAndView profileById(@PathVariable String id) {
        final ModelAndView model = new ModelAndView("profile");     
        /* do something */
        return model;
    }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question