Home > Back-end >  Convert java springboot code into scala akka http
Convert java springboot code into scala akka http

Time:03-29

I want to convert my REST Api code which is written with java spring boot in to scala akka http ,is there any online converter available for this?

CodePudding user response:

No. That's a lot to expect from an automated service.

CodePudding user response:

You won't really find any "online converter" that will do you the job. I suggest either to take sometime to learn Scala or copy that code that you have into the your Scala IDE (such as Intellij or so), that will automatically make syntax changes to your code, but you still have to do some changes for it to work correctly.

  • Related