• SpringBoot常用注解(一)


    控制层:controller

    1.@RestController注解相当于@ResponseBody + @Controller合在一起的作用。即这样写每一个方法返回的是 JSON 类型的数据。

    2.@RequestMapping在这里就是一个位置映射(访问地址)。

    3.@Autowired 自动注入(相当于@bean)。  

    知识点:@RestController注解相当于@ResponseBody + @Controller合在一起的作用。

    1) 如果只是使用@RestController注解Controller(控制层),则Controller(控制层)中的方法无法返回jsp页面,或者html,配置的视图解析器 InternalResourceViewResolver不起作用,返回的内容就是Return 里的内容。

    2) 如果需要返回到指定页面,则需要用 @Controller配合视图解析器InternalResourceViewResolver才行。
        如果需要返回JSON,XML或自定义mediaType内容到页面,则需要在对应的方法上加上@ResponseBody(转json)注解。

    例如:

    1.使用@Controller 注解,在对应的方法上,视图解析器可以解析return 的jsp,html页面,并且跳转到相应页面

    若返回json等内容到页面,则需要加@ResponseBody注解


    @CrossOrigin
    @Controller
    public class FileUploadController {

    //跳转到上传文件的页面
    @RequestMapping(value="/gouploadimg", method = RequestMethod.GET)
    public String goUploadImg() {
    //跳转到 templates 目录下的 uploadimg.html
    return "uploadimg";
    }

    //处理文件上传
    @RequestMapping(value="/testuploadimg", method = RequestMethod.POST)
    public @ResponseBody String uploadImg(@RequestParam("file") MultipartFile file,
    HttpServletRequest request) {
    System.out.println("调用文件上传方法");
    String contentType = file.getContentType();
    String fileName = file.getOriginalFilename();


      2.@RestController注解,相当于@Controller+@ResponseBody两个注解的结合,返回json数据不需要在方法前面加@ResponseBody注解了,但使用@RestController这个注解,就不能返回jsp,html页面,视图解析器无法解析jsp,html页面

    @CrossOrigin
    @RestController /* @Controller + @ResponseBody*/
    public class HospitalController {

    //注入Service服务对象
    @Autowired
    private HospitalService hospitalService;

    /**
    * 查询所有医院信息(未分页)
    */

    @RequestMapping(value = "findAllHospital",method = RequestMethod.GET)
    public List<Hospital> findAllHospital(){
    List<Hospital> hospitalList= hospitalService.findAllHospital();
    return hospitalList;
    }
    有志者、事竟成,破釜沉舟,百二秦关终属楚; 苦心人、天不负,卧薪尝胆,三千越甲可吞吴. 加油吧,致每个正在奋斗路上的你!!!
  • 相关阅读:
    idea 设置鼠标滚动放大、缩小字体大小
    idea 添加翻译插件
    关于Window10无法访问共享的疑难杂证 itprobie
    国内打不开GitHub网站100%解决办法 itprobie
    win7网络共享连接计算机需要密码 itprobie
    jbpm4.4基础知识(一) itprobie
    JBPM4 常用表结构及其说明 itprobie
    Win10错误代码0x80004005无法访问共享设备的解决方法 itprobie
    JBPM4.4总结(一)——基础知识 itprobie
    win10共享需要密码怎么办_win10取消共享访问密码的方法 itprobie
  • 原文地址:https://www.cnblogs.com/cb1186512739/p/11153284.html
Copyright © 2020-2023  润新知