美文网首页
Spring Boot第一天

Spring Boot第一天

作者: 2efa470dd3ae | 来源:发表于2019-08-13 23:06 被阅读0次

    1.Spring boot 学习官方地址

    https://spring.io/guides

    2.创建Spring boot项目

    IEDA创建一个新的项目,引入thymeleaf

    <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
    

    官方网站https://spring.io/guides/gs/serving-web-content/

    import org.springframework.stereotype.Controller;
    import org.springframework.ui.Model;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestParam;
    
    @Controller
    public class GreetingController {
        @GetMapping("/greeting")
        public String greeting(@RequestParam(name="name", required=false, defaultValue="World") String name, Model model) {
            model.addAttribute("name", name);
            return "greeting";
        }
    }
    

    其中方法返回值为String时,其会spring会自动的去resource/templates文件夹下,查找greeting.html。

    3.Spring boot集成了tomcat

    所以Spring Boot打成jar包,放到服务器运行,可以直接运行。

    4.快捷键

    command+p可以提示方法中的参数。

    5.git命令

    当已经提交commit文件时候,又修改但其commit提示和刚刚的是一样的时,可以使用下面命令

    git add .
    git commit --amend --no-edit  变化追加到一个没有提交的commit中,不修改commit内容
    

    相关文章

      网友评论

          本文标题:Spring Boot第一天

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