File tree Expand file tree Collapse file tree
src/main/java/rocks/inspectit/oce/eum/server/rest Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ openTelemetryVersion=1.27.0
1515openTelemetryAlphaVersion =1.27.0-alpha
1616openTelemetryProtoVersion =1.7.1-alpha
1717protobufVersion =3.22.3
18- guavaVersion =31.1 -jre
18+ guavaVersion =32.1.2 -jre
1919geoip2Version =4.0.1
2020commonsNetVersion =3.9.0
2121commonsMath3Version =3.6.1
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments