package org.merka.stubgen.web.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.SessionAttributes; @Controller public class UserMediaController { @RequestMapping("/userMedia") public String view() { return "userMediaTestView"; } }