You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2023/03/30 07:41:43 UTC

[skywalking-showcase] branch main updated: Make the songs service use Undertow as web container (#119)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git


The following commit(s) were added to refs/heads/main by this push:
     new e18782a  Make the songs service use Undertow as web container (#119)
e18782a is described below

commit e18782a9092ddfcb6fd222847aef1d15dd5c9f40
Author: mrproliu <74...@qq.com>
AuthorDate: Thu Mar 30 15:41:37 2023 +0800

    Make the songs service use Undertow as web container (#119)
---
 services/songs-service/build.gradle | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/services/songs-service/build.gradle b/services/songs-service/build.gradle
index 30c4812..6afddb2 100644
--- a/services/songs-service/build.gradle
+++ b/services/songs-service/build.gradle
@@ -38,7 +38,10 @@ repositories {
 
 dependencies {
 	implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
-	implementation 'org.springframework.boot:spring-boot-starter-web'
+	implementation('org.springframework.boot:spring-boot-starter-web') {
+		exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
+	}
+	implementation 'org.springframework.boot:spring-boot-starter-undertow'
 	implementation 'org.springframework.boot:spring-boot-starter-actuator'
 	implementation 'org.springframework.kafka:spring-kafka'
 	implementation 'com.h2database:h2'