Home > front end >  What versions of Velocity does Spring4.x support?
What versions of Velocity does Spring4.x support?

Time:12-14

I know that Velocity is no longer supported in the latest Spring, but I need Velocity in my project. Therefore, I am trying to use Spring 4.x. Can you please provide information on which versions of Velocity are supported by Spring 4.x?

CodePudding user response:

Spring itself dropped support for Velocity in Spring 5.0, so Spring itself supports it upto Spring 4.3.x. In Spring 4.3 you can use Velocity 1.7, newer version might work but nothing is guaranteed.

There is also the spring-velocity-support package which aims at some Spring support. I'm not entirely sure what is in that.

  • Related