Skip to content

Commit

Permalink
support spring-boot2.0.4.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
automvc committed May 2, 2021
1 parent 73d3045 commit ba7e882
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.teasoft</groupId>
<artifactId>bee-spring-boot</artifactId>
<version>1.9.5</version>
<version>1.9.5.boot2.0.4.RELEASE</version>

<packaging>jar</packaging>
<name>bee-spring-boot</name>
Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.5.16.RELEASE</version>
<version>2.0.4.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/org/teasoft/spring/boot/config/BeeProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ public BeeProGenid getBeeProGenid() {

@Bean
@ConditionalOnClass(BeeProMoreTable.class)
@ConfigurationProperties(prefix = "bee.osql.moreTable")
@ConfigurationProperties(prefix = "bee.osql.more-table")
public BeeProMoreTable getBeeProMoreTable() {
return new BeeProMoreTable();
}

@Bean
@ConditionalOnClass(BeeProMultiDS.class)
@ConfigurationProperties(prefix = "bee.dosql.multiDS")
@ConfigurationProperties(prefix = "bee.dosql.multi-d-s")
public BeeProMultiDS getBeeProMultiDS() {
return new BeeProMultiDS();
}
Expand All @@ -91,28 +91,28 @@ public BeeProNaming getBeeProNaming() {

@Bean
@ConditionalOnClass(BeeProPearFlowerId.class)
@ConfigurationProperties(prefix = "bee.distribution.pearFlowerId")
@ConfigurationProperties(prefix = "bee.distribution.pear-flower-id")
public BeeProPearFlowerId getBeeProPearFlowerId() {
return new BeeProPearFlowerId();
}

@Bean
@ConditionalOnClass(BeeProReturnStringList.class)
@ConfigurationProperties(prefix = "bee.osql.returnStringList")
@ConfigurationProperties(prefix = "bee.osql.return-string-list")
public BeeProReturnStringList getBeeProReturnStringList() {
return new BeeProReturnStringList();
}

@Bean
@ConditionalOnClass(BeeProSelectJson.class)
@ConfigurationProperties(prefix = "bee.osql.selectJson")
@ConfigurationProperties(prefix = "bee.osql.select-json")
public BeeProSelectJson getBeeProSelectJson() {
return new BeeProSelectJson();
}

@Bean
@ConditionalOnClass(BeeProShowSql.class)
@ConfigurationProperties(prefix = "bee.osql.showSql")
@ConfigurationProperties(prefix = "bee.osql.show-sql")
public BeeProShowSql getBeeProShowSql() {
return new BeeProShowSql();
}
Expand Down

0 comments on commit ba7e882

Please sign in to comment.