following is my only Controller ( annotations are used ) :
@Controller("ValidationController")
public class ValidationController {
@Autowired
@Qualifier("beanValidator")
Type: Posts; User: SwapnilSawant; Keyword(s):
following is my only Controller ( annotations are used ) :
@Controller("ValidationController")
public class ValidationController {
@Autowired
@Qualifier("beanValidator")
Following is my validator-rules.xml ( which I copied from some post :) ) :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE form-validation PUBLIC
"-//Apache Software...
Hi ,
I am newbie to Spring framework. I have built a very small sample application to start with , using Spring 3 MVC module.
Application consists of single screen which asks for UserName and...