我正在学习Spring Core认证,但对此问题有一些疑问:
What is the @Controller annotation used for? How can you create a
controller without an annotation?
因此,我知道@Controller注释指示特定的类充当控制器的角色. @Controller注释充当带注释的类的构造型,指示其作用.调度程序扫描此类带注释的类以查找映射的方法,并检测@RequestMapping注释.
所以控制器类是这样的:
@Controller
public class AccountController {
@RequestMapping("/listAccounts")
public String list(Model model) {...}
}
}
好的,这对我来说很清楚,但是究竟是什么意思创建一个没有注释的控制器呢?我该怎么做?还是通过XML配置?
特纳克斯
解决方法:
public class AccountController extends MultiActionController {
public ModelAndView listAccounts() {
// your code
return new ModelAndView("listAccounts.bean", "msg", "As you want")
}
}
web.xml
dispatcher
org.springframework.web.servlet.DispatcherServlet
dispatcher
*.bean
dispatcher-servlet.xml
标签:annotations,spring,java,spring-mvc,controller
来源: https://codeday.me/bug/20191028/1952936.html