java springboot 环境配置
最最简单的方法:
- 先配好jdk环境
- 去spring.io下载一个spring tool suite jar包
- 双击安装,会解压出来spring tool suite
- 创建spring项目就可以了(需要等,要下载一堆垃圾)
编译一下以后项目文件夹会变成这样:
然后在Demo里头写一个控制器就可以访问127.0.0.1:8080了:
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; // 这个和上面一行的头文件要加,不然RestController会报错
import org.springframework.stereotype.Controller;
@SpringBootApplication
@RestController
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@RequestMapping(value = "/")
public String hello() {
return "Hello World";
}
}
ok,简单总结一下。
springboot就是Spring MVC 的简化版本。是在 Spring MVC 的基础上实现了自动配置,简化了开发人员开发过程。
更多的部分看下面第二篇参考文章就可以了。
参考:https://www.yiibai.com/spring-boot/spring_boot_bootstrapping.html
https://www.cnblogs.com/fishpro/p/spring-boot-study-restcontroller.html