web | java springboot 环境配置

java springboot 环境配置

最最简单的方法:

  1. 先配好jdk环境
  2. 去spring.io下载一个spring tool suite jar包
  3. 双击安装,会解压出来spring tool suite
  4. 创建spring项目就可以了(需要等,要下载一堆垃圾)

编译一下以后项目文件夹会变成这样:
image

然后在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 的基础上实现了自动配置,简化了开发人员开发过程。
image
image

更多的部分看下面第二篇参考文章就可以了。

参考:https://www.yiibai.com/spring-boot/spring_boot_bootstrapping.html
https://www.cnblogs.com/fishpro/p/spring-boot-study-restcontroller.html

posted @ 2022-01-20 17:27  Mz1  阅读(86)  评论(0编辑  收藏  举报