Best unofficial Apache Server developers community |
I want to test this java code to see if anything is being updated in the postgresql database . How do I do this in ecclipse IDE ?
posted via StackOverflow
|
|
 
|
There is nothing in this code that requires it to be in a web-app. That's a good thing, as web-apps are components of their Servlet containers. In other words, you can't really run a standalone web-app, you must deploy it. Perhaps you'll deploy it in a micro-container that only contains your application, but there's nothing like true stand-alone running of a component. In your case, just add a |
|
 
|
I would suggest writing a TestCase and making sure (assert)that the data you store in postgres, you can read it. |