Java JDK6: bundling web services, embedded database, etc.
I have been reading some negative comments on adding web services, embedded database, etc. to the core Java libraries but I think that this is in general a good thing. If you don't like the now "standard" web services libraries, then just use the stack you prefer. The good thing is that it is just about trivial to do two things:
- Export methods from one of your POJO classes as a web service
- Build a client from a WSDL resource (e.g., "wsimport -d generated http://test.com/stock?wsdl")
Comments
Post a Comment