一、idea配置springboot项目环境
1.点击Create new Projext
2.选择spring initializr和自己的SDK
3.注意jdk1.8的Java版本选8
4.添加一些依赖
5.选择项目存放位置
6.添加Maven,这里需要自己去官网下载maven。
7.在–》\apache-maven-3.8.5\conf,找到settings.xml修改路径
8.添加上maven后,可以运行项目。
遇到的问题
在初次完成项目的构建后,启动项目时出错,提示信息“ Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured. ” ,异常指的是 “ 配置数据源失败:没有指定’url’属性,也不能配置嵌入式数据源。 ” ,如下图:
解决办法:
在 SpringBoot 应用程序启动时,排除 jdbc 的自动装配机制即可,在程序入口文件中新增配置注解 “ exclude=DataSourceAutoConfiguration.class ”
二、实现简单的springboot
1.进行springboot项目
2.实现一个简单的controller
package com.example.demo.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/first")
public class FirstController {
@GetMapping("/boot")
public String getFirst(){
return "我在这里啊";
}
}