Skip to content

Commit

Permalink
Spring Boot 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lWoHvYe committed May 24, 2024
1 parent 84ff508 commit d0e00ec
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ buildNumber.properties
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
.kotlin/sessions/

.gradle
**/build/
Expand Down
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

本项目在eladmin项目的基础上,进行了部分扩展及尝试,在此表示感谢。

For lWoHvYe/unicorn project, will stay at Java 21 until 2025. will try Java 21+ in WHY-lWoHvYe/valentine-p2p (skip Java 22)

---

Expand Down Expand Up @@ -90,7 +89,7 @@ implementation("com.lwohvye:unicorn-security:$unicornVersion") {

#### 项目简介

一个基于最新的Java 21(17) 版本、 Spring Boot 3.2、 Jpa、 Spring Security、RabbitMQ、Vue的前后端分离的脚手架。
一个基于最新的Java 21(17) 版本、 Spring Boot 3.3、 Jpa、 Spring Security、RabbitMQ、Vue的前后端分离的脚手架。
在各模块基本解耦之后,可根据需要只引入部分模块实现相关职能。

#### 项目源码
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
springBootVersion=3.2.4
springBootVersion=3.3.0
springCloudVersion=2023.0.1
kotlinVersion=2.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void initRabbitTemplate(RabbitTemplate rabbitTemplate) {
* exchange:当时这个消息发给哪个交换机
* routingKey:当时这个消息用哪个路邮键
*/
rabbitTemplate.setReturnsCallback(returnedMessage -> log.warn("Fail Message[{}]==>replyCode[{}]==>replyText[{}]==>exchange[{}]==>routingKey[{}]",
rabbitTemplate.setReturnsCallback(returnedMessage -> log.debug("Fail Message[{}]==>replyCode[{}]==>replyText[{}]==>exchange[{}]==>routingKey[{}]",
returnedMessage.getMessage(), returnedMessage.getReplyCode(), returnedMessage.getReplyText(), returnedMessage.getExchange(), returnedMessage.getRoutingKey()));
}
}

0 comments on commit d0e00ec

Please sign in to comment.