I have created a RESTful webservice and this webservice uses a mysql database. This was done following a howto using the Netbeans IDE.
All is working fine except for one little thing.
There is one table that is set as a 'time' type (default values 00:00:00) but for some reason when i access the wadl i get to see:
<time>1970-01-01T17:00:00+01:00</time>
I am not a very good Java programmer but i saw in the source of the webservice that Netbeans made this:
public void setDate(Date time) {
this.time = time;
}
How do i change this to just the time value? Are there standard classes that i can use?
[edit]
I am running a glassfish server where i deployed a Netbeans generated war file.
The tutorial to generate a RESTful webservice using Netbeans and mysql
(netbeans.org/kb/docs/websvc/rest.html#entities-and-services)