Skip to content

Commit

Permalink
在6.3.0版本基础上更新 springboot3 分支,感谢 calmcc 的贡献 #24
Browse files Browse the repository at this point in the history
  • Loading branch information
TommyLemon authored Mar 12, 2024
2 parents ddd40c2 + fd3092d commit 65b9221
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 26 deletions.
48 changes: 33 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,37 @@
# Compiled class file
*.class
HELP.md
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target/
bin
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<modelVersion>4.0.0</modelVersion>

<groupId>apijson.framework</groupId>
<artifactId>apijson-framework-spring-boot3</artifactId>
<version>6.2.0</version>
<artifactId>apijson-framework</artifactId>
<version>6.3.0-springboot3</version>
<packaging>jar</packaging>

<name>APIJSONFramework</name>
Expand Down Expand Up @@ -38,12 +38,12 @@
<dependency>
<groupId>com.github.Tencent</groupId>
<artifactId>APIJSON</artifactId>
<version>6.2.0</version>
<version>6.4.3-springboot3</version>
</dependency>
<dependency>
<groupId>com.github.APIJSON</groupId>
<artifactId>apijson-column</artifactId>
<version>1.7.0</version>
<version>1.8.0</version>
</dependency>

<!-- 数据库 JDBC 驱动 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< -->
Expand All @@ -55,7 +55,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.8</version>
<version>42.7.2</version>
</dependency>
<!-- 数据库 JDBC 驱动 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -->

Expand All @@ -64,12 +64,12 @@
<dependency>
<groupId>com.github.TommyLemon</groupId>
<artifactId>unitauto-java</artifactId>
<version>2.9.0</version>
<version>3.0.5</version>
</dependency>
<dependency>
<groupId>com.github.TommyLemon</groupId>
<artifactId>unitauto-jar</artifactId>
<version>2.9.0</version>
<version>3.0.5</version>
</dependency>
<!-- 单元测试:可使用 libs 目录的 unitauto-java.jar 和 unitauto-jar.jar 来替代,两种方式二选一 >>>>>>>>> -->

Expand All @@ -80,7 +80,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.12.1</version>
<configuration>
<source>17</source>
<target>17</target>
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/apijson/framework/APIJSONController.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ public String parseByTag(RequestMethod method, String tag, Map<String, String> p

/**增删改查统一入口,这个一个方法可替代以下 7 个方法,牺牲一点路由解析性能来提升一些开发效率
* @param method
* @param tag
* @param params
* @param request
* @param session
* @return
Expand Down Expand Up @@ -316,7 +314,6 @@ public String deleteByTag(String tag, Map<String, String> params, String request


/**重新加载配置
* @param request
* @return
* @see
* <pre>
Expand Down

0 comments on commit 65b9221

Please sign in to comment.