SpringBoot的环境搭建

IDE工具 idea

Java 1.8

数据库 MySQL

Maven apache-maven-3.6.0

https://github.com/fanmujin/sms.git

本人自己搭建的初试化版本,未连接数据库,仅供参考。

 

SpringBoot的环境搭建_第1张图片

 

SpringBoot的环境搭建_第2张图片

点击next 选择依赖,可以先不选后期加。

直接next

 修改阿里镜像

参照https://mp.csdn.net/postedit/88963755

SpringBoot的环境搭建_第3张图片

此时表结构为这样。

在pom.xml 中添加依赖,来开启web服务

  
        
            org.springframework.boot
            spring-boot-starter-web
        

运行

服务开启

SpringBoot的环境搭建_第4张图片

测试:

新建 包结构

SpringBoot的环境搭建_第5张图片

interface :TestService


public interface TestService {
    public int test();
}

TestServiceImpl

@Service
public class TestServiceImpl  implements TestService {
    @Override
    public int test() {
        return 111111111;
    }
}

TestController


@Controller
@EnableAutoConfiguration
public class TestController {
    @Autowired
    TestService testService;

    @RequestMapping("/get")
    @ResponseBody
    public int get(){
        return testService.test();
    }

 

运行结果: 

整个Spring boot项目结构

SpringBoot的环境搭建_第6张图片

搭建完成

你可能感兴趣的:(maven,Spring,boot)