resource
文章平均质量分 58
为山九仞
这个作者很懒,什么都没留下…
展开
-
spring集成Mybatis学习三种方式扫描加载mapper接口
@MapperCan@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.TYPE)@Documented@Import(MapperScannerRegistrar.class)public @interface MapperScan { /** * Alias for the {@link #basePackages()} attribute. Allows for more concise * annotatio.原创 2021-03-16 19:56:30 · 2266 阅读 · 1 评论 -
Springboot启动时数据库初始化
使用springboot jdbc初始化数据库spring.datasource下有两个属性schme、data,其中schema为表初始化语句,data为数据初始化,默认加载schema.sql与data.sql。脚本位置可以通过spring.datasource.schema 与spring.datasource.data来改变。spring: datasource: username: xxx password: xxx url: jdbc:mysql:/..原创 2021-02-03 18:41:42 · 2837 阅读 · 2 评论 -
Springboot加载maven父子工程配置文件的方法
1、@PropertySource父子工程同名配置文件,优先加载当前主模块的配置文件,主模块的配置文件没有加载子模块的配置文件 (默认resource下的配置文件)@PropertySource(value={"classpath:skill-common.properties"})2、ResourceUtilsorg.springframework.util.ResourceUtils父子工程同名配置文件,优先加载当前主模块的配置文件,主模块的配置文件没有加载子模块的配置文件(默..原创 2021-01-07 19:11:52 · 1908 阅读 · 0 评论 -
Springboot加载外部配置文件的方法
1. 项目内部配置文件 以上是按照优先级从高到低的顺序,所有位置的文件都会被加载,高优先级配置内容会覆盖低优先级配置内容。SpringBoot会从这四个位置全部加载主配置文件,如果高优先级中配置文件属性与低优先级配置文件不冲突的属性,则会共同存在—互补配置。我们也可以通过配置spring.config.location来改变默认配置。java -jar spring-b...原创 2020-04-22 09:57:13 · 10257 阅读 · 0 评论