我有一个Spring Roo应用程序(使用Spring MVC作为脚手架视图),我想在访问特定URL时执行静态方法。
我该如何解决这个问题?
答案 0 :(得分:1)
如何与Spring Roo做任何事情。我认为它只适用于编译时而不是在运行时?
在Spring MVC中,你可以创建一个@Controller,然后给出方法@RequestMapping(value =" / url",method = RequestMethod.GET)。
查看http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html以获取更多参考资料。