Re: No service implements the interface java.util.Date.

2016-01-05 Thread Andreas Ernst
Am 05.01.16 um 14:14 schrieb Thiago H de Paula Figueiredo: On Tue, 05 Jan 2016 09:03:59 -0200, Andreas Ernst wrote: Hi, Hi! "No service implements the interface XXX" means you're trying to inject a dependency of type XXX in some service or object created by ObjectLocator/Registry.autobuild(

Re: No service implements the interface java.util.Date.

2016-01-05 Thread Thiago H de Paula Figueiredo
On Tue, 05 Jan 2016 09:03:59 -0200, Andreas Ernst wrote: Hi, Hi! "No service implements the interface XXX" means you're trying to inject a dependency of type XXX in some service or object created by ObjectLocator/Registry.autobuild(). The class you're editing in BeanEditForm, Tanken, p

No service implements the interface java.util.Date.

2016-01-05 Thread Andreas Ernst
Hi, i got this error, and have to glue how to fix it. Because i got serveral other T5 apps with Timestamp without this issue. Information: [ERROR] ioc.Registry No service implements the interface java.util.Date. Information: [ERROR] ioc.Registry Operations trace: Information: [ERROR

Re: no service implements the interface java.util.Date

2009-03-03 Thread Thiago H. de Paula Figueiredo
Use BeanEditForm "prepare" event to instantiate your Celebrity instead of letting BeanEditForm to do that. -- Thiago - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tap

Re: no service implements the interface java.util.Date

2009-03-02 Thread nillehammer
Hi ?. http://tapestry.apache.org/tapestry5/faq/general.html Cheers, nillehammer > While I'm using BeanEditForm component from T5.0.18, it throws an > error says "no servicie implements java.util.Date". My code is quite > simple. > > > > and Celebrity is just a POJO which has an constructor like

Re: no service implements the interface java.util.Date

2009-03-02 Thread 丁振波
你把缺省的构造去掉就可以了 否则T5IoC会去自动进行参数注入 注入的参数就会去找实现的service 找不到就报这个错误了 - Original Message - From: "孙立伟" To: "Tapestry users" Sent: Tuesday, March 03, 2009 1:57 PM Subject: no service implements the interface java.util.Date While I'm using BeanEditForm component f

no service implements the interface java.util.Date

2009-03-02 Thread 孙立伟
While I'm using BeanEditForm component from T5.0.18, it throws an error says "no servicie implements java.util.Date". My code is quite simple. and Celebrity is just a POJO which has an constructor like "public Celebrity(String firstName, String lastName,Date dateOfBirth)". I'm a newbie and can't