1

Recently while I was updating a project from spring 2.5.6 to 3, I couldn't find the relavent
org.springmodules package... Because of using spring 2.5 dependency I cannot use org.springmodules 0.8 version... Can anyone please tell me any what happened to the classes in this org.springmodules module and a place to find any more changes.. ?

thanx..

Pradeep
  • 647
  • 1
  • 7
  • 17
  • SpringModules is obsolete and no longer maintained. Which functionality are you using it for? – skaffman Mar 09 '12 at 10:48
  • I'm looking for ValangValidator or similar class – Pradeep Mar 09 '12 at 10:54
  • "An implementation of Validator that takes a Valang syntax string to define the set of validation rules it will apply. This instance is thread-safe." This is what it says in the api.. – Pradeep Mar 09 '12 at 11:11

2 Answers2

0

Unfortunately I ran into a similar issue.. Upgraded to spring 4.x and see that springmodules validation was using a depreated spring API that got removed in 4.x. The only solution (apart from trying to find another validation framework) we had was to fork the source code ourselves, fix it and use it.

Ravi Sanwal
  • 584
  • 5
  • 14
0

If you don't find any substitution you could exclude the spring 2.5 dependency of springmodules like shown here.

Community
  • 1
  • 1
Joachim Rohde
  • 5,915
  • 2
  • 29
  • 46