Migrate ASP.NET MVC 5 application to Spring Boot #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Migrate ASP.NET MVC 5 application to Spring Boot
Summary
Complete migration from ASP.NET MVC 5 (.NET Framework 4.8) to Spring Boot 3.1.5 (Java 17) while preserving the existing AngularJS frontend functionality.
Key Changes:
LandingController.csto Java Spring@Controller.cshtml) with Thymeleaf (.html)Web.configto Spring Bootapplication.propertiesThe AngularJS frontend remains completely unchanged and functional - only the backend technology stack has been migrated.
Review & Testing Checklist for Human
./gradlew bootRun, navigate tohttp://localhost:8080, and verify both AngularJS components render correctly (jQuery version display and AngularJS version display)/css/site.css,/node_modules/jquery/dist/jquery.min.js,/node_modules/angular/angular.min.js,/WebApp/*.js)./gradlew clean buildand verify the copy tasks successfully populatesrc/main/resources/static/with node_modules, WebApp, and CSS contentNotes
processResourcesphase, so./gradlew bootRunincludes the latest frontend assets