[appengine-java] Re: JPA problem - I want to persist an entity and then select all the entities from the table

2009-11-13 Thread Zaske
I can do normal registration by using "java.util.Date". > > thanks. > > On 11月13日, 午後7:13,Zaske wrote: > > > Hi all, > > I have a problem with  using JPA & Google App engine > > > Here is my entity: > > > @Entity > > public class UserEntit

[appengine-java] JPA problem - I want to persist an entity and then select all the entities from the table

2009-11-13 Thread Zaske
Hi all, I have a problem with using JPA & Google App engine Here is my entity: @Entity public class UserEntity { public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName;

[appengine-java] Re: A newbie question about logging using java.util.logging

2009-11-13 Thread Zaske
DataNucleus.SchemaTool.level=WARNING com.zas.test.level=INFO On Nov 13, 9:02 am, Toby Reyelts wrote: > Did you try com.zas.test.level=INFO instead of com.zas.test=INFO ? > > On Fri, Nov 13, 2009 at 1:22 AM, Zaske wrote: > > Yes, I tried filtering info - and did not get the messsage. > >

[appengine-java] Re: A newbie question about logging using java.util.logging

2009-11-12 Thread Zaske
Yes, I tried filtering info - and did not get the messsage. In the end I changed the file to look like: .level = FINEST # Set the default logging level for ORM, specifically, to WARNING DataNucleus.JDO.level=WARNING DataNucleus.Persistence.level=WARNING DataNucleus.Cache.level=WARNING DataNucleus

[appengine-java] A newbie question about logging using java.util.logging

2009-11-12 Thread Zaske
Hi all, I want to log (at INFO level) all classes that their package begin with com.zas.test - For this I added the line: com.zas.test=INFO to my logging.properties file - so now it looks like this: .level = WARNING # Set the default logging level for ORM, specifically, to WARNING DataNucleus.J