vote up -1 vote down star

Hi,

What could the best strategy for writing validation layer for mid-enterprise level business application built on Spring 2.5

I know that Spring provides facility where we can implement Validator interface and write validation logic in validate method. But this will be restricted to only web requests coming through spring controller.

I would like to develop the validation framework which can be utilized during web-services calls.

In other words, the framework can remain and be called independently without the need of implementing Validator interface and then too it can be automatically integrated into Spring MVC flow.

Hope you get my point.

flag

50% accept rate

4 Answers

vote up 1 vote down

The Spring Validation framework can be used outside of Spring MVC. What WebServices Stack are you using? If you are using Spring-WS (Spring's Web Services stack) they have special instructions on how to set up the validator here:

http://static.springframework.org/spring-ws/sites/1.5/reference/html/server.html#d0e2313

If you are using some other stack, it is probably easier to implement something for that stack (or find one) that will use Spring's validation framework.

link|flag
vote up 0 vote down

Recall that the Validator interface defines two methods:

boolean supports(Class clazz)
void validate(Object target, Errors errors)

The "Object target" is your form object, which is the whole object representing the page to be shown to the user. The Errors instance will contain the errors that will be displayed to the user.

So, what you need to do is define an intermediary that can be called with the specifics in your form that you want to validate which are also the same as in your web service. The intermediary can take one of two forms:

  1. (probably the best):

    public interface ErrorReturning { public void getErrors(Errors errors); }

  2. (this can get ugly really fast if more than two states are added):

    public interface ValidationObject { public Errors getErrors(Errors errors); public Object getResultOfWebServiceValidation(); }

I would suggest that the first approach be implemented. With your common validation, pass an object that can be used for web service validation directly, but allow it to implement the getErrors() method. This way, in your validator for Spring, inside your validation method you can simply call:

getCommonValidator().validate(partialObject).getErrors(errors);

Your web service would be based around calls to getCommonValidator().validate(partialObject) for a direct object to be used in the web service.

The second approach is like this, though the interface only allows for an object to be returned from the given object for a web service validation object, instead of the object being a usable web service validation object in and of itself.

link|flag
vote up -1 vote down

Thanks kilhoffer for your idea, well I am not acquainted with AOP so may be I need to first learn it :)

Chris, your idea seems better but I was planning to develop WS using CXF. I am not aware how we can use spring-ws for developing WS. If you have any thoughts about CXF vs SPRING-WS please let me know.

link|flag
vote up -1 vote down

Just something to think about...I wouldn't consider this a definitive answer to your question, but since you're already using Spring, I recommend performing your validation in an aspect oriented fashion. Spring.Net has built in facilities to make aspect oriented programming a reality. With the right creative team, you could design and develop a very slick AOP style validation framework!

link|flag
I didn't notice anything in the post which mentioned Spring.Net, so I'd assume he's using Spring, i.e. it's a Java app, not a .Net app – Don Sep 29 '08 at 15:25
Got it. I edited to reflect. – Kilhoffer Oct 17 '08 at 20:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.