Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
y_initiate
springboot模板
提交
143b5cb1
S
springboot模板
项目概览
y_initiate
/
springboot模板
与 Fork 源项目一致
Fork自
小小白鸽 / springboot-template
通知
2
Star
1
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
springboot模板
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
143b5cb1
编写于
8月 28, 2023
作者:
W
weixin_43814374
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Mon Aug 28 15:07:00 CST 2023 inscode
上级
276e418a
变更
9
显示空白变更内容
内联
并排
Showing
9 changed file
with
38 addition
and
0 deletion
+38
-0
target/classes/application-dev.yml
target/classes/application-dev.yml
+1
-0
target/classes/application-prod.yml
target/classes/application-prod.yml
+1
-0
target/classes/application-test.yml
target/classes/application-test.yml
+1
-0
target/classes/application.yml
target/classes/application.yml
+13
-0
target/classes/com/template/TemplateApplication.class
target/classes/com/template/TemplateApplication.class
+0
-0
target/classes/com/template/config/MybatisPlusConfig
target/classes/com/template/config/MybatisPlusConfig
+22
-0
target/classes/com/template/config/SwaggerConfig.class
target/classes/com/template/config/SwaggerConfig.class
+0
-0
target/classes/com/template/config/WebMvcConfiguration.class
target/classes/com/template/config/WebMvcConfiguration.class
+0
-0
target/classes/com/template/controller/TestController.class
target/classes/com/template/controller/TestController.class
+0
-0
未找到文件。
target/classes/application-dev.yml
0 → 100644
浏览文件 @
143b5cb1
env
:
"
开发环境"
\ No newline at end of file
target/classes/application-prod.yml
0 → 100644
浏览文件 @
143b5cb1
env
:
"
生产环境"
\ No newline at end of file
target/classes/application-test.yml
0 → 100644
浏览文件 @
143b5cb1
env
:
"
验收环境"
\ No newline at end of file
target/classes/application.yml
0 → 100644
浏览文件 @
143b5cb1
server
:
port
:
8081
servlet
:
context-path
:
/springboot-template
spring
:
# swagger配置
mvc
:
pathmatch
:
matching-strategy
:
ant_path_matcher
profiles
:
active
:
dev
\ No newline at end of file
target/classes/com/template/TemplateApplication.class
0 → 100644
浏览文件 @
143b5cb1
文件已添加
target/classes/com/template/config/MybatisPlusConfig
0 → 100644
浏览文件 @
143b5cb1
package
com
.
template
.
config
;
import
com
.
baomidou
.
mybatisplus
.
annotation
.
DbType
;
import
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
MybatisPlusInterceptor
;
import
com
.
baomidou
.
mybatisplus
.
extension
.
plugins
.
inner
.
PaginationInnerInterceptor
;
import
org
.
mybatis
.
spring
.
annotation
.
MapperScan
;
import
org
.
springframework
.
context
.
annotation
.
Bean
;
import
org
.
springframework
.
context
.
annotation
.
Configuration
;
//
注意启动该配置项需要在
pom
中取消
mybatisplus
、
druid
等依赖的注释,同时必须配置数据源否则启动报错
//
@
Configuration
//
@
MapperScan
(
basePackages
=
"com.template.*.mapper"
)
public
class
MybatisPlusConfig
{
@
Bean
public
MybatisPlusInterceptor
mybatisPlusInterceptor
(){
MybatisPlusInterceptor
interceptor
=
new
MybatisPlusInterceptor
();
interceptor
.
addInnerInterceptor
(
new
PaginationInnerInterceptor
(
DbType
.
MYSQL
));
return
interceptor
;
}
}
target/classes/com/template/config/SwaggerConfig.class
0 → 100644
浏览文件 @
143b5cb1
文件已添加
target/classes/com/template/config/WebMvcConfiguration.class
0 → 100644
浏览文件 @
143b5cb1
文件已添加
target/classes/com/template/controller/TestController.class
0 → 100644
浏览文件 @
143b5cb1
文件已添加
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录