Hi all,
I am using jdom to read xml data from 1000 xml file and extract the
data , and update to our MYSQL database.
I am using servlet to call jdom and do the job in the Tomcat servlet
container in Linux Server.
The extraction of data from xml is ok. However , i need some advice
from experts or people who have done this before.
What is the best way to extract the data and insert to the
database ?
I have thinking using batch insert to do this . Create a bean using
set() to set all xml data and store the bean in the Collection.
And iterate the collection and using get() to get xml data and
insert to database using batch method.
Anyone have any other suggestion or ideas?
Thanks
Wee Tat
Daniel Pitts - 30 May 2007 15:33 GMT
> Hi all,
>
[quoted text clipped - 18 lines]
>
> Wee Tat
Do what is easiest first. If it is too slow, then optimize. If you
optimize too soon, you're likely to create code that is less
maintainable, and therefor harder to optimize in the future. Oh, and
only optimize after you've run a profiler to tell you what part of
your program is slow, never guess or assume.
Karl Uppiano - 30 May 2007 15:59 GMT
[snip]
> Anyone have any other suggestion or ideas?
Make it work... Make it right... Make it fast.
Do it in that order -- It's one of the few concepts from Extreme Programming
that I ever found really helpful.