零基础搭建SpringBoot框架
2021-02-11 04:18
标签:while test 文件 word 定时任务 cee size end 定时 在一般互联网公司,一些技术框架无论是前端还是后台,都是有相当牛技术经验,技术经理和架构师来搭建,一般的技术人员是无法接触到这一块的。因此,这边只是满足一些小型的开发,同时主要目的还是从搭建的角度去了解SpringBoot而已。话不多说开始搭建; 以上的依赖已经将SpringBoot部署到项目中了。 yml(或者yaml)文件相当于SSM框架的xml配置信息一样,因此,它会将你所用到的信息在此文件编辑,该文件放在src/main/resources路径下,下面以YML形式来配置: 这样对于一个一般小型的SpringBoot框架就搭建好了,下来就跟原来的项目一样,配置相关pom依赖,新建实体类、Service接口、Controller类,去继续完成一个项目。 零基础搭建SpringBoot框架 标签:while test 文件 word 定时任务 cee size end 定时 原文地址:https://www.cnblogs.com/xu-cceed3w/p/12737831.html一、maven添加SpringBoot相关依赖
parent>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-parentartifactId>
version>2.1.9.RELEASEversion>
relativePath />
parent>
properties>
project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
maven.compiler.source>1.8maven.compiler.source>
maven.compiler.target>1.8maven.compiler.target>
properties>
dependencies>
dependency>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-webartifactId>
dependency>
dependency>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-testartifactId>
scope>testscope>
dependency>
dependencies>
二、配置application.yml(或application.properties)文件
quartz:
enabled: true #开启定时任务
server:
port: 8080 #指定启动端口号
servlet:
context-path: /**/**
spring:
output:
ansi:
enabled: always
#数据库相关配置
datasource:
name: ****
url: jdbc:mysql://r************:3306/***?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8
username: ****
password: ****
#配置初始化大小/最小/最大
initial-size: 1
min-idle: 1
max-active: 20
#获取连接等待超时时间
max-wait: 60000
#间隔多久进行一次检测,检测需要关闭的空闲连接
time-between-eviction-runs-millis: 60000
#一个连接在池中最小生存的时间
min-evictable-idle-time-millis: 300000
validation-query: SELECT ‘x‘
test-while-idle: true
test-on-borrow: false
test-on-return: false
#打开PSCache,并指定每个连接上PSCache的大小。oracle设为true,mysql设为false。分库分表较多推荐设置为false
pool-prepared-statements: false
max-pool-prepared-statement-per-connection-size: 20
## 该配置节点为独立的节点,有很多同学容易将这个配置放在spring的节点下,导致配置无法被识别
mybatis:
mapper-locations: classpath:mapper/*.xml #注意:一定要对应mapper映射xml文件的所在路径
#log日志
logging:
config: classpath:logback-spring.xml
path: D:/Log/logs
三、pom添加数据库依赖(以MySQL为主)
dependency>
groupId>org.mybatis.spring.bootgroupId>
artifactId>mybatis-spring-boot-starterartifactId>
version>2.0.0version>
dependency>
dependency>
groupId>mysqlgroupId>
artifactId>mysql-connector-javaartifactId>
dependency>