使用IDEA从头搭建SpringBoot项目
使用IDEA从头搭建SpringBoot项目第一步:创建项目1.点击 file– new --project,选择Spring Initializer2.选择项目JDK,确定是否是本机安装的JDK,这里我的是JDK1.8, 确定之后点击next3.填写项目基本信息4.预先选择一些项目需要的第三方依赖包,选择之后,会在pom.xml文件中自动生成依赖5.确定项目名称,点击finish,完成项目创建6
·
使用IDEA从头搭建SpringBoot项目
第一步:创建项目
1.点击 file – new --project ,选择Spring Initializer
2.选择项目JDK,确定是否是本机安装的JDK,这里我的是JDK1.8, 确定之后点击next
3.填写项目基本信息
4.预先选择一些项目需要的第三方依赖包,选择之后,会在pom.xml文件中自动生成依赖
5.确定项目名称,点击finish,完成项目创建
6.查看pmo.xml文件,看项目信息是否正确
第二步:配置Maven
1.点击file — settings —maven,配置maven为自己安装的maven,apply即可
第三步:创建项目文件
1.在com.example.demo 上右键,选择new – package ,可以在改目录下创建包
2.我们创建Spring web项目基本的文件目录
3.编写配置文件 application.yml
server:
port: 8001
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/demo?characterEncoding=utf8&useSSL=false&serverTimezone=UTC
username: root
password: 123456
mybatis:
# model的包
type-aliases-package: com.example.demo.pojo
configuration:
map-underscore-to-camel-case: true
#mapper.xml所在位置
mapper-locations: classpath:mapper/*.xml
# 打印sql
logging:
level:
ssm.app.mapper : debug
第四步:运行项目
1.点击启动类旁边的绿色三角,Run即可
有如下输出内容,证明项目已经启动完成
源代码传送门:https://gitee.com/lizhaojie/springboot-example.git
感谢支持,多多交流
更多推荐
已为社区贡献1条内容
所有评论(0)