Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Dealing with a project in which huge volumes of XML files are processed and loaded into RDBMS. In the tranformation layer, XML file needs to be converted to java pojo , enriched validated and then inserted into DB.

The file size is appx. 10 kb

Question is, in transformation layer which framework to use 1) JIBX(with woodstox) 2) jxpath Jxpath will come handy to develop a configurable transformation layer as it is expression based and we can dynamically evaluate the path with conditions. However on the other hand, I am concerned about the performance.

I havent tried my hands yet on both the approaches. Appreciate your advise.

share|improve this question
im useing jibx for ex/importing data from our system. it's ligthning fast - around 3 secs for a ~10Mb file with ~50k objects – itshorty Jul 24 '12 at 7:10

1 Answer

up vote 0 down vote accepted

i have tried VTD, and i am very happy with the performance.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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