Click here to Skip to main content
15,881,852 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to convert ASP.NET mvc project to Spring mvc project. Please let me know What are the requirements ?

What I have tried:

I create the Spring maven project Structure in STS tool.
Posted
Updated 20-Mar-16 22:17pm

1 solution

ASP.NET is written and runs on the top of .NET framework, whereas Spring framework runs on a Java framework; Java EE. Converting one to another is not possible, because there may be many differences in the frameworks. Even if you can find a tool to convert one to another, you are going to fix most of the errors yourself, which would be raised later.

The thing is, Java and .NET are different in many ways.

1. Their bytecodes have different standards.
2. A feature of one, may not be implemented in a similar manner in the other framework.

Microsoft used to create tools for converting Java code to J#, but even that was not guaranteed to convert 100% code to J#, that was also very long ago. Things are much complex now.

My recommendation is to build the application yourself, start by learning Spring framework and then write the same application in a different framework; Spring MVC framework. Spring Framework Reference Documentation[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900