美文网首页
spring boot

spring boot

作者: employeeeee | 来源:发表于2018-03-10 13:19 被阅读0次

    spring boot 的架构真的是很牛比。刚接触it的时候 很少会想到要测试什么的 spring boot会有一个专门的测试模块,可以直接测试。但是确实是掌握的不多。
    spring boot 可以直接建立web idea选好一直next就行。也可以去spring 的网站
    http://start.spring.io/
    去下载一个你想用的版本包,在导入即可。
    需要有个配置
    在.pom文件中
    <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
    直接建立的话会自动配置好
    有一些个人的理解
    java下的是运行类,也就是执行的
    resource 是资源 各种你需要的 包括图片 配置文件什么的。
    test就是测试
    spring boot架构对文件的位置要求还是挺多的。
    所以文件的位置一定要放好。

    • 所有新建项目第一课 hallo world
      web下新建html
      `package com.example.demo2.web;

    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.ResponseBody;

    @Controller
    public class SampleController {

    @RequestMapping("/aaa")
    @ResponseBody
    String home() {
        return "Hello World!";
    }
    

    }
    这里要提到一下 Controller 和 Recontroller 的区别
    其实差别倒不是很大 只不过Recontroller是不需要再声明ResponseBody的
    但是Controller就需要再声明一下
    执行
    输入地址 8080/aaa
    显示hello world

    相关文章

      网友评论

          本文标题:spring boot

          本文链接:https://www.haomeiwen.com/subject/prbvfftx.html