1.Spring boot 学习官方地址
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内容