You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/main/java/org/springframework/sbm/boot/upgrade_27_30/report/helper/ChangesToDataPropertiesHelper.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -68,10 +68,10 @@ public boolean evaluate(ProjectContext context) {
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/test/java/org/springframework/sbm/boot/upgrade/common/actions/CreateAutoconfigurationActionTest.java
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/test/java/org/springframework/sbm/boot/upgrade_24_25/recipes/Boot_24_25_UpdateDependenciesRecipeTest.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ void updateWithParentPom() {
44
44
<version>2.5.6</version>
45
45
<relativePath/> <!-- lookup parent from repository -->
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/test/java/org/springframework/sbm/boot/upgrade_27_30/ChangeJavaxPackagesToJakartaTest.java
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/test/java/org/springframework/sbm/boot/upgrade_27_30/report/helper/BannerSupportReportSectionTest.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ public void rendersBannerSupportInformation() {
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/test/java/org/springframework/sbm/boot/upgrade_27_30/report/helper/ChangesToDataPropertiesReportSectionTest.java
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/test/java/org/springframework/sbm/boot/upgrade_27_30/report/helper/SpringFactoriesHelperTest.java
Copy file name to clipboardExpand all lines: components/sbm-recipes-boot-upgrade/src/test/java/org/springframework/sbm/boot/upgrade_27_30/report/helper/SpringMVCAndWebFluxUrlMatchingChangesReportSectionTest.java
+4-3
Original file line number
Diff line number
Diff line change
@@ -165,10 +165,11 @@ public void configurePathMatch(PathMatchConfigurer configurer) {
165
165
166
166
167
167
""".formatted(
168
-
projectRoot.resolve(restController1Path).toUri(),
169
-
restController1Path,
168
+
// Note the controller order here, sorted by package / absolute path
170
169
projectRoot.resolve(restController2Path).toUri(),
171
-
restController2Path
170
+
restController2Path,
171
+
projectRoot.resolve(restController1Path).toUri(),
172
+
restController1Path
172
173
);
173
174
174
175
SpringBootUpgradeReportTestSupport.generatedSection("Spring MVC and WebFlux URL matching changes")
0 commit comments