基于 tyboot 快速初始化 springboot 单体项目
2021-02-02 01:14
标签:att 加密 state level com 表示 property amp character tyboot源码: gitee github 示例项目 tybootdemo 源码 tybootdemo 其中包名自行定义,; controller 和 face 目录 为约定目录结构.建议保持一致. 配置文件建议使用多环境配置,启动的时候添加参数 spring.profiles.active 如下: Run-->Edit Configurations... tyboot的包放在个人私服,可以临时使用,建议将tyboot源码克隆以后自行打包到自己的私服 数据库和缓存配置 会接下来演示 示例功能用到. 至此 已经完成工程初始化,可以进一步使用tyboot所有的核心功能,包括 ? 无sql编码体验 ? 基于租户的数据隔离机制 ? 数据缓存 ? 基于简单固定窗口的请求频次限制 ? 基于拦截器的请求拦截扩展 ? 错误处理与异常定义 ? 统一请求上下文 ? 统一返回格式 ? 登录认证方式扩展 ? 认证机制 ? 接口输入输出加密 ? 便捷工具类 ? 本地多账号登录 基于 tyboot 快速初始化 springboot 单体项目 标签:att 加密 state level com 表示 property amp character 原文地址:https://blog.51cto.com/magintursh/2491948项目目录结构:
pom.xml 文件内容:
application.properties 文件内容:
推荐使用多环境配置
spring.application.name=tybootdemo
server.port=30010
server.servlet.context-path=/demo
server.compression.enabled=true
server.compression.mime-types=application/json,application/xml,text/html,text/xml,text/plain
#默认就是2048 byte
server.compression.min-response-size=2048
#spring.jackson.default-property-inclusion=non_null
logging.config=classpath:logback-${spring.profiles.active}.xml
# mybatis_config
mybatis-plus.mapper-locations=classpath:mapper/*Mapper.xml
mybatis-plus.type-aliases-package=org.typroject.*.*.face.*.orm.entity
application-dev.properties 文件内容:
# jdbc_config
spring.datasource.url=jdbc:mysql://192.168.1.212:3306/tybootdemo?characterEncoding=utf8&serverTimezone=Asia/Shanghai
spring.datasource.username=tybootdemo
spring.datasource.password=tybootdemo
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#not support for spring-boot v1.5+, use org.apache.tomcat.jdbc.pool.DataSource by default.
spring.datasource.type=com.zaxxer.hikari.HikariDataSource
spring.datasource.hikari.minimum-idle=5
spring.datasource.hikari.maximum-pool-size=15
spring.datasource.hikari.auto-commit=true
spring.datasource.hikari.idle-timeout=30000
spring.datasource.hikari.pool-name=DatebookHikariCP
spring.datasource.hikari.max-lifetime=1800000
spring.datasource.hikari.connection-timeout=30000
spring.datasource.hikari.connection-test-query=SELECT 1
# REDIS (RedisProperties)
spring.redis.database=10
spring.redis.host=192.168.1.212
spring.redis.port=6379
spring.redis.password=xxxxx
spring.redis.timeout=0
logback-dev.xml 文件内容
文章标题:基于 tyboot 快速初始化 springboot 单体项目
文章链接:http://soscw.com/index.php/essay/49736.html