Skip to content

Commit c616184

Browse files
authored
update WebConfiguration (#45)
* add WebConfiguration * update guavaVersion
1 parent 4bf60f0 commit c616184

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ openTelemetryVersion=1.27.0
1515
openTelemetryAlphaVersion=1.27.0-alpha
1616
openTelemetryProtoVersion=1.7.1-alpha
1717
protobufVersion=3.22.3
18-
guavaVersion=31.1-jre
18+
guavaVersion=32.1.2-jre
1919
geoip2Version=4.0.1
2020
commonsNetVersion=3.9.0
2121
commonsMath3Version=3.6.1
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package rocks.inspectit.oce.eum.server.rest;
2+
3+
import org.springframework.context.annotation.Configuration;
4+
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
5+
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
6+
7+
@Configuration
8+
public class WebConfiguration implements WebMvcConfigurer {
9+
10+
@Override
11+
public void configurePathMatch(PathMatchConfigurer configurer) {
12+
configurer.setUseTrailingSlashMatch(true);
13+
}
14+
}

0 commit comments

Comments
 (0)