Re: DI in wicket

2011-11-12 Thread vela
Hi, Just like to use DAO pattern with Spring in wicket. If any other link for references would be of great help. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DI-in-wicket-tp3824880p4036039.html Sent from the Users forum mailing list archive at Nabble.com

Re: DI in wicket

2011-11-12 Thread James Carman
rg.apache.wicket.request.handler.render.PageRenderer.getPage(PageRenderer.java:78) > at > org.apache.wicket.request.handler.render.WebPageRenderer.renderPage(WebPageRenderer.java:105) > at > org.apache.wicket.request.handler.render.WebPageRenderer.respond(WebPageRenderer.java:224) > at

Re: DI in wicket

2011-11-11 Thread vela
437) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DI-in-wicket-tp3824880p4033763.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr..

Re: DI in wicket

2011-11-11 Thread vela
437) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DI-in-wicket-tp3824880p4033762.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr..

Re: DI in wicket

2011-11-11 Thread vela
e.RequestCycle.processRequest(RequestCycle.java:208) at org.apache.wicket.request.cycle.RequestCycle.processRequestAndDetach(RequestCycle.java:251) at org.apache.wicket.protocol.http.WicketFilter.processRequest(WicketFilter.java:162) -- View this message in context: http://apache-wicket.1842946

Re: DI in wicket

2011-11-09 Thread Per Newgro
ew this message in context: http://apache-wicket.1842946.n4.nabble.com/DI-in-wicket-tp3824880p4020478.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org F

Re: DI in wicket

2011-11-09 Thread vela
erDao userDao; public IndexPage() { System.out.println(userDao); add(new Label("sampleLabel", "This is a text which is also a model.")); userDao.test(); } } -- View this message in conte

Re: DI in wicket

2011-10-31 Thread Chantal Ackermann
t;30" > > removeAbandoned="true"removeAbandonedTimeout="120" > > testOnBorrow="false"testOnReturn="false"testWhileIdle="true" > > validationQuery="SELECT 1&quo

Re: DI in wicket

2011-10-31 Thread Martin Grigorov
nedTimeout="120" > testOnBorrow="false"        testOnReturn="false"        testWhileIdle="true" > validationQuery="SELECT 1"        timeBetweenEvictionRunsMillis="59000" > minEvictableIdleTimeMillis="58000"        /> > > > > &

Re: DI in wicket

2011-10-30 Thread vela
Hi, I have configured db configuration in conf/server.xml in tomcat. Is this fine or extra configuration has to be done. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DI-in-wicket-tp3824880p3953328.html Sent from the Users forum mailing list

Re: DI in wicket

2011-10-30 Thread Martin Grigorov
erException >        at sun.jdbc.odbc.JdbcOdbcDriver.getProtocol(Unknown Source) >        at sun.jdbc.odbc.JdbcOdbcDriver.knownURL(Unknown Source) >        at sun.jdbc.odbc.JdbcOdbcDriver.acceptsURL(Unknown Source) >        at java.sql.DriverManager.getDriver(Unknown Source) >

Re: DI in wicket

2011-10-30 Thread vela@w...@gmail.com
) at sun.jdbc.odbc.JdbcOdbcDriver.acceptsURL(Unknown Source) at java.sql.DriverManager.getDriver(Unknown Source) at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createConnectionFactory(BasicDataSource.java:1437) -- View this message in context: http://apache-wicket.1842946

Re: DI in wicket

2011-09-20 Thread manuelbarzi
see also org.apache.wicket.spring.common.web.ExampleApplication in wicket-examples On Mon, Sep 19, 2011 at 9:20 PM, Sven Meier wrote: > > see https://cwiki.apache.org/WICKET/spring.html > > > On 09/19/2011 09:08 PM, sakthi vel wrote: > > Hi All, > > > > I would like to know how to use Dependency

Re: DI in wicket

2011-09-19 Thread Sven Meier
see https://cwiki.apache.org/WICKET/spring.html On 09/19/2011 09:08 PM, sakthi vel wrote: > Hi All, > > I would like to know how to use Dependency Injection of Spring in wicket to > get the database connection. > The datasource is configured in the DAO class using the > applicationcontext.xml. C

DI in wicket

2011-09-19 Thread sakthi vel
Hi All, I would like to know how to use Dependency Injection of Spring in wicket to get the database connection. The datasource is configured in the DAO class using the applicationcontext.xml. Could you tell how to call the DAO class without creating the object in the Page class. Any examples or