本文主要是介绍Spring的@RequestMapping注解类浅析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
具体java代码如下:
package com.cdkj.frame.core.web.controller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
*
* @ClassName: WelcomeController
* @Description: TODO
* @author
* @date
*
*/
@Controller
@RequestMapping(value = "/a") // 注释一
public class WelcomeController {
private Logger log = LoggerFactory.getLogger(WelcomeController.class);
/**
*
* @Title: welcome
* @Description: 首页
* @return String 返回类型
* @throws
*/
@RequestMapping(value = "/b", method = RequestMethod.GET) // 注释二
protected String welcome() {
// TODO Auto-generated method stub
log.debug("welcome############");
return "index";
}
/**
*
* @Title: headPage
* @Description: headPage公共引用引用
* @return String 返回类型
* @throws
*/
@RequestMapping(value = "/headPage", method = RequestMethod.GET)
protected String headPage() {
// TODO Auto-generated method stub
log.debug("headPage############");
return "headPage";
}
/**
*
* @Title: oldIndex
* @Description: 初始静态界面
* @return String 返回类型
* @throws
*/
@RequestMapping(value = "/oldIndex", method = RequestMethod.GET)
protected String oldIndex() {
// TODO Auto-generated method stub
log.debug("headPage############");
return "oldIndex";
}
}
说明:
1、注释一和注释二处的配置如果分别为:@RequestMapping(value = "/a") 和@RequestMapping(value = "/b") ,
那么如下访问路径:http://localhost:8080/a/b (此处已指定通过HTTP的GET方式请求)
将访问该Controller中的welcome()方法;
2、注释一和注释二处的配置如果分别为:@RequestMapping(value = "/") 和@RequestMapping(value = "/b") ,
那么如下访问路径:http://localhost:8080/b (此处已指定通过HTTP的GET方式请求)
将访问该Controller中的welcome()方法;
3、注释一和注释二处的配置如果分别为:@RequestMapping(value = "/") 和@RequestMapping(value = "/") ,
那么如下访问路径:http://localhost:8080/ (此处已指定通过HTTP的GET方式请求)
将访问该Controller中的welcome()方法;
4、注释一和注释二处的配置如果分别为://@RequestMapping(value = "/") //此处已注释 和@RequestMapping(value = "/b") ,
即类级别没有@RequestMapping注解标注,方法级别有的话,
那么如下访问路径:http://localhost:8080/b (此处已指定通过HTTP的GET方式请求)
将访问该Controller中的welcome()方法。
这篇关于Spring的@RequestMapping注解类浅析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!