Re: data persistence using hibernate

2023-01-25 Thread Vit Rozkovec
t sure what exactly you mean with "instead". A connection pool is not a replacement of an ORM framework like Hibernate. However, I can't workout where the most appropriate place to put the connection pool close call, is there a close or shutdown function I can override so that the con

Re: data persistence using hibernate

2023-01-24 Thread Locke, Jonathan (Luo Shibo)
cement of an ORM framework like Hibernate. However, I can't workout where the most appropriate place to put the connection pool close call, is there a close or shutdown function I can override so that the connection pool can be closed cleanly. I haven't had any luck in my search so far Additionally

Re: data persistence using hibernate

2023-01-24 Thread James Pollard
, ended up using hikaricp instead HikariCP is a just a connection pool. I am not sure what exactly you mean with "instead". A connection pool is not a replacement of an ORM framework like Hibernate. However, I can't workout where the most appropriate place to put the connection pool

Re: data persistence using hibernate

2023-01-23 Thread Martin Grigorov
placement of an ORM framework like Hibernate. > > However, I can't workout where the most appropriate place to put the > connection pool close call, is there a close or shutdown function > I can override so that the connection pool can be closed cleanly. I > haven't had any luck in my

Re: data persistence using hibernate

2023-01-23 Thread James Pollard
, that pointed me to find additional resources on JPA I believe I have this configured correctly, but I'm confused about how to integrate JPA/Hibernate into a pure wicket authenticated web application project since the resource you directed me to previously seems to be more heavily on the spring side

Re: data persistence using hibernate

2022-12-26 Thread Vit Rozkovec
, On Thu, Dec 22, 2022 at 2:24 PM James wrote: Thanks for the guidance so far, that pointed me to find additional resources on JPA I believe I have this configured correctly, but I'm confused about how to integrate JPA/Hibernate into a pure wicket authenticated web application project since

Re: data persistence using hibernate

2022-12-23 Thread James Pollard
configured correctly, but I'm confused about how to integrate JPA/Hibernate into a pure wicket authenticated web application project since the resource you directed me to previously seems to be more heavily on the spring side of things. This is true. I have used Hibernate/JPA without the SpringBo

Re: data persistence using hibernate

2022-12-22 Thread Ernesto Reinaldo Barreiro
Hi James, On Thu, Dec 22, 2022 at 2:24 PM James wrote: > Thanks for the guidance so far, that pointed me to find additional > resources on JPA > I believe I have this configured correctly, but I'm confused about how > to integrate JPA/Hibernate into a > pure wicket authenticated

Re: data persistence using hibernate

2022-12-22 Thread Vit Rozkovec
Hi, I'm currently using Hibernate without Spring and what you want to achieve can be done in several steps: - prepare your org.hibernate.cfg.Configuration - set Configuration's property: config.setProperty("hibernate.current_session_context_class", "managed"); - get Sess

Re: data persistence using hibernate

2022-12-21 Thread James
Thanks for the guidance so far, that pointed me to find additional resources on JPA I believe I have this configured correctly, but I'm confused about how to integrate JPA/Hibernate into a pure wicket authenticated web application project since the resource you directed me to previously seems

Re: data persistence using hibernate

2022-12-19 Thread Ernesto Reinaldo Barreiro
https://github.com/MarcGiffing/wicket-spring-boot/blob/master/wicket-spring-boot-starter-example/src/main/java/com/giffing/wicket/spring/boot/example/model/Customer.java This defines a JPA entity and this JPA/Hibernate https://github.com/MarcGiffing/wicket-spring-boot/blob/master/wicket

Re: data persistence using hibernate

2022-12-19 Thread James
I've had a look through it but couldn't find any reference to hibernate so far, its entirely possible that I managed to miss it while I was searching though Best Regards James Pollard james.poll...@iinet.net.au On 19/12/22 5:06 pm, Ernesto Reinaldo Barreiro wrote: Hi, This project https

Re: data persistence using hibernate

2022-12-18 Thread Ernesto Reinaldo Barreiro
Hi, This project https://github.com/MarcGiffing/wicket-spring-boot contains a sample project that integrates with JPA/hibernate. On Mon, Dec 19, 2022 at 9:12 AM James wrote: > Hi, > can anyone direct me to any resources on how to integrate hibernate for > data persistence? > &

data persistence using hibernate

2022-12-18 Thread James
Hi, can anyone direct me to any resources on how to integrate hibernate for data persistence? the closest I've managed to find is https://www.infoworld.com/article/2077901/web-development-with-wicket--part-3--many-ways-to-persist.html?page=7 but there's still things that are confusing me

WG: best way to set up tests with WicketTester Spring and Hibernate

2016-05-15 Thread hansheinrichbraun
GMT+01:00) An: users@wicket.apache.org Betreff: best way to set up tests with WicketTester Spring and Hibernate i try to build my tests for my wicket applications with wicket 6.19.0 spring 3.2.2.RELEASE and hibernate 4.1.8.Final the tests run fine only when OpenSessionInViewFilter is used

best way to set up tests with WicketTester Spring and Hibernate

2016-05-13 Thread hansheinrichbraun
i try to build my tests for my wicket applications with wicket 6.19.0 spring 3.2.2.RELEASE and hibernate 4.1.8.Final the tests run fine only when OpenSessionInViewFilter is used I get the Error could not initialize proxy - no sessionwhat is the best way to deal with problem. I read a remark

Re: Issue with REST Sessions in Wicket-Shiro-Hibernate

2016-01-26 Thread Martin Grigorov
d Morning. > > I'm currently working in a Wicket 6.19.0 and Hibernate 4.3.6 project with > Shiro authentication. > The code is very high level and I'm having troubles finding a solution for > my problem. > But first of all, let me explain the problem. > > In the application ther

Re: Issue with REST Sessions in Wicket-Shiro-Hibernate

2016-01-26 Thread MM_at_ANO
.n4.nabble.com/Issue-with-REST-Sessions-in-Wicket-Shiro-Hibernate-tp4673417p4673439.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Issue with REST Sessions in Wicket-Shiro-Hibernate

2016-01-26 Thread Martin Grigorov
You help is much appreciated. > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Issue-with-REST-Sessions-in-Wicket-Shiro-Hibernate-tp4673417p4673439.html > Sent from the Users forum mailing list archive at Nabble.com. > > ---

Issue with REST Sessions in Wicket-Shiro-Hibernate

2016-01-25 Thread MM_at_ANO
Good Morning. I'm currently working in a Wicket 6.19.0 and Hibernate 4.3.6 project with Shiro authentication. The code is very high level and I'm having troubles finding a solution for my problem. But first of all, let me explain the problem. In the application there is a REST API service

Re: WebSocket Filter to open a Hibernate Session

2015-09-16 Thread Marco Springer
page. My guess would be that those multiple requests are for the resources that needed to be loaded, e.g. images/js/css/whatever. In that respect, it would absolutely not be wise to use that to open & close hibernate sessions ;-) Upon a WebSocket event, the onBeginRequest & onEndRequest ar

Re: WebSocket Filter to open a Hibernate Session

2015-09-15 Thread Martin Grigorov
at 4:32 PM, Marco Springer <ma...@glitchbox.nl> wrote: > Hi, > > Using normal requests and long-polling ajax timers to update an interface > works fine with hibernate sessions. > Now I'm trying to implement WebSockets to update small parts of a web > application that come

WebSocket Filter to open a Hibernate Session

2015-09-15 Thread Marco Springer
Hi, Using normal requests and long-polling ajax timers to update an interface works fine with hibernate sessions. Now I'm trying to implement WebSockets to update small parts of a web application that come from server side events. I want to get rid of the long polling. For now I'm only using

Re: peculiarities with wicket hibernate

2014-04-17 Thread Yahoo
Solved: It was the definition of the equals function in the hibernate beans. Am 14.04.2014 10:29, schrieb Yahoo: I got a step further with the following definitions I succeded to Insert the ManyToOne relationships. Only the DropDownChoices don't write the changes back in the Model

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-15 Thread Martin Grigorov
to continue discussing... On Mon, Apr 14, 2014 at 9:03 AM, Chris Snyder chris.sny...@biologos.org wrote: Thanks for the reply - no worries on the delay. In my case, I'm using EclipseLink. I originally was using Hibernate, but switched after encountering a known bug in Hibernate

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-15 Thread William Speirs
wrote: Thanks for the reply - no worries on the delay. In my case, I'm using EclipseLink. I originally was using Hibernate, but switched after encountering a known bug in Hibernate (the specifics of which I no longer recall). Since I was sticking to using the pure JPA API

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-15 Thread Chris Snyder
. In my case, I'm using EclipseLink. I originally was using Hibernate, but switched after encountering a known bug in Hibernate (the specifics of which I no longer recall). Since I was sticking to using the pure JPA API, it was a quick drop-in replacement. Recently, however

peculiarities with wicket hibernate

2014-04-14 Thread Yahoo
I serarated the hibernate part in an own maven modul. I the tests in this modul everything works well. I use a lot of many to one relationships. In the web application I get sometimes problems, that the key of a many to one relationship is not written or the DropDownChoice does'nt write

Re: peculiarities with wicket hibernate

2014-04-14 Thread Yahoo
= new DropDownChoiceObjektart(objektart, makeChoicesObjektart,objektartchoicerenderer); add(objektart); Am 14.04.2014 09:39, schrieb Yahoo: I serarated the hibernate part in an own maven modul. I the tests in this modul everything works well. I use a lot of many to one relationships

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-14 Thread Bill Speirs
Chris, sorry for not responding more quickly... was traveling back from ApacheCon NA. Honestly, it would be non-trivial to drop in a replacement to Hibernate. The JpaPersistService (http://goo.gl/FeI6xU) handles the configuration coming from persistence.xml and has nothing Hibernate specific

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-14 Thread Maxim Solodovnik
In our project we have removed Hibernate because it's licence is not AL compatible We are using OpenJPA, was not so hard to replace On Mon, Apr 14, 2014 at 7:44 PM, Bill Speirs bill.spe...@gmail.com wrote: Chris, sorry for not responding more quickly... was traveling back from ApacheCon NA

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-14 Thread Chris Snyder
Thanks for the reply - no worries on the delay. In my case, I'm using EclipseLink. I originally was using Hibernate, but switched after encountering a known bug in Hibernate (the specifics of which I no longer recall). Since I was sticking to using the pure JPA API, it was a quick drop

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-14 Thread William Speirs
should probably take this off the Wicket list if folks want to continue discussing... On Mon, Apr 14, 2014 at 9:03 AM, Chris Snyder chris.sny...@biologos.orgwrote: Thanks for the reply - no worries on the delay. In my case, I'm using EclipseLink. I originally was using Hibernate, but switched

Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-09 Thread William Speirs
I gave a talk at ApacheCon NA yesterday on Croquet. It is a combination of Wicket, Jetty, Hibernate, and Guice to make it super-easy to start writing Wicket code almost immediately, instead of spending time configuring everything. Slides: https://docs.google.com/presentation/d

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-09 Thread Maxim Solodovnik
I have attended, it was fun :) On Wed, Apr 9, 2014 at 10:51 AM, William Speirs wspe...@apache.org wrote: I gave a talk at ApacheCon NA yesterday on Croquet. It is a combination of Wicket, Jetty, Hibernate, and Guice to make it super-easy to start writing Wicket code almost immediately

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-09 Thread Chris Snyder
in a different JPA implementation in place of Hibernate? Best, Chris On Wed, Apr 9, 2014 at 12:51 PM, William Speirs wspe...@apache.org wrote: I gave a talk at ApacheCon NA yesterday on Croquet. It is a combination of Wicket, Jetty, Hibernate, and Guice to make it super-easy to start writing Wicket code

Re: Using Wicket and Hibernate

2013-11-21 Thread Dan Alvizu
Here's an example of wicket spring and hibernate all working together, with an h2 database: https://github.com/dalvizu/wicket-spring-hibernate-template -Dan On Thu, Nov 21, 2013 at 8:30 AM, Gerrit Wassink gerrit.wass...@qfactors.nlwrote: Hello, I am reading Wicket in Action the part over

Using Wicket and Hibernate

2013-11-21 Thread Gerrit Wassink
Hello, I am reading Wicket in Action the part over wicket, spring and hibernate.Since i am new to concepts like wicket, spring and hibernate i want to learn about them.But also learning three new tools together is a bit much. Is it therefore a good idea to forget about Spring and make the mvc

Re: Using Wicket and Hibernate

2013-11-21 Thread Gerrit Wassink
Thanks! Dan Alvizu dalv...@pingidentity.com , 21-11-2013 14:59: Here's an example of wicket spring and hibernate all working together, with an h2 database: https://github.com/dalvizu/wicket-spring-hibernate-template -Dan On Thu, Nov 21, 2013 at 8:30 AM, Gerrit Wassink gerrit.wass

Re: wicket-tree with two Hibernate entities

2012-10-20 Thread Sandor Feher
Thanks. All work fine. s -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-tree-with-two-Hibernate-entities-tp4653122p4653163.html Sent from the Users forum mailing list archive at Nabble.com

Re: wicket-tree with two Hibernate entities

2012-10-20 Thread Sven Meier
That's good to hear :). Sven On 10/20/2012 09:41 PM, Sandor Feher wrote: Thanks. All work fine. s -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-tree-with-two-Hibernate-entities-tp4653122p4653163.html Sent from the Users forum mailing list archive

wicket-tree with two Hibernate entities

2012-10-19 Thread Sandor Feher
the examples realized that the listed items belongs to the same class. Should I create a helper class based on a view ? I would like to find the best approach if possible. thnx., Sandor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-tree-with-two-Hibernate

Re: wicket-tree with two Hibernate entities

2012-10-19 Thread Sven Meier
class based on a view ? I would like to find the best approach if possible. thnx., Sandor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-tree-with-two-Hibernate-entities-tp4653122.html Sent from the Users forum mailing list archive at Nabble.com

Re: wicket-tree with two Hibernate entities

2012-10-19 Thread Sandor Feher
; } public void setChildren(ListHrpFiles children) { this.children = children; } } thnx., Sandor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-tree-with-two-Hibernate-entities-tp4653122p4653130.html Sent from the Users forum mailing

Re: Wicket Feedback panels and Hibernate Validation

2012-01-27 Thread Martin Grigorov
Hi, On Thu, Jan 26, 2012 at 10:36 PM, Wooldridge, Keith A keith.wooldri...@mantech.com wrote: I'm trying to create a custom hibernate validator , based on bradhouse's solution in this StackOverflow threadhttp://stackoverflow.com/questions/1972933/cross-field-validation-with-hibernate

RE: Wicket Feedback panels and Hibernate Validation

2012-01-27 Thread Wooldridge, Keith A
Feedback panels and Hibernate Validation Hi, On Thu, Jan 26, 2012 at 10:36 PM, Wooldridge, Keith A keith.wooldri...@mantech.com wrote: I'm trying to create a custom hibernate validator , based on bradhouse's solution in this StackOverflow threadhttp://stackoverflow.com/questions/1972933/cross

Wicket Feedback panels and Hibernate Validation

2012-01-26 Thread Wooldridge, Keith A
I'm trying to create a custom hibernate validator , based on bradhouse's solution in this StackOverflow threadhttp://stackoverflow.com/questions/1972933/cross-field-validation-with-hibernate-validator-jsr-303. I'm passing in the field name that I would like the error message to be associated

Re: What to add to pom.xml to use hibernate?

2012-01-21 Thread Josh Kamau
), Ebean.delete(instance) . there is a fluid query api that is very flexible. Send me a personal mail and i will take you through. Regards. Josh. On Sat, Jan 21, 2012 at 10:53 AM, Daniel Watrous daniel.watr...@gmail.comwrote: I'm interested in using hibernate in my wicket application, but I can't find

Re: What to add to pom.xml to use hibernate?

2012-01-21 Thread Per Newgro
Hmm. Firstly you ask the wrong list. Hibernate is off topic. At second - did you do a search? With maven hibernate i found this link quickly: http://stackoverflow.com/questions/3345816/hibernate-projects-and-building-with-maven See the answer with the green check at the side. I think

Re: What to add to pom.xml to use hibernate?

2012-01-21 Thread Daniel Watrous
Thank you. That link helped be get this working. Daniel On Sat, Jan 21, 2012 at 1:32 AM, Per Newgro per.new...@gmx.ch wrote: Hmm. Firstly you ask the wrong list. Hibernate is off topic. At second - did you do a search? With maven hibernate i found this link quickly: http://stackoverflow.com

What to add to pom.xml to use hibernate?

2012-01-20 Thread Daniel Watrous
I'm interested in using hibernate in my wicket application, but I can't find any up to date examples combining the two. Is there something other than hibernate that the wicket community uses for ORM? If not, what can I add to the pom.xml file to include hibernate. I tried adding

blog: integrating jpa/hibernate into wicket and cdi

2011-11-21 Thread Igor Vaynberg
just wrote a new blog entry on how to integrate jpa with cdi and wicket https://www.42lines.net/2011/11/21/adding-jpahibernate-into-the-cdi-and-wicket-mix/ -igor - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: How to use the LoadableDetachableModel in a Wicket, Spring, Hibernate based web application correctly?

2011-08-12 Thread jcgarciam
based on Hibernate, Spring and Wicket. Until now I implemented the business objects and the persistence layer. The transaction is managed by a transaction interceptor of the Spring framework and the HibernateTransactionManager. So each method of the DAO classes is encapsulated in a transaction

Re: wicket, hibernate, spring setup

2011-08-09 Thread msj121
jWeekend no longer seems to have a wicket/hibernate/spring archetype. SOLVED: I had a lot of trouble using eclipse, but simply I did the following from the command line: mvn archertype:generate and then went through the steps of choosing groupid etc after all my attempts the archetype

wicket, hibernate, spring setup

2011-08-08 Thread msj121
I noticed there was a github setup here: https://github.com/pflanzenmoerder/wicket-hibernate-archetype And I added the repository and imported the project into my eclipse helios. I can't seem to get the project to run, not sure how to finish setting up the project. Can anyone help? -- View

Re: wicket, hibernate, spring setup

2011-08-08 Thread jcgarciam
Try jWeekend LegUp http://www.jweekend.com/dev/LegUp On Mon, Aug 8, 2011 at 7:15 PM, msj121 [via Apache Wicket] ml-node+3728444-1358850638-65...@n4.nabble.com wrote: I noticed there was a github setup here: https://github.com/pflanzenmoerder/wicket-hibernate-archetype And I added

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-26 Thread Zilvinas Vilutis
://apache-wicket.1842946.n4.nabble.com/Replacing-Spring-MVC-with-Wicket-in-Existing-Spring-Hibernate-project-tp3693395p3694118.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread eugenebalt
Hi, I have an existing Spring/Hibernate project currently using SpringMVC as the presentation layer, and I need to port it to Wicket. I looked at the quickstart downloads for Wicket for how to create a Wicket project, but that's not a Spring/Hibernate project. I already have my Spring/Hibernate

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread Martin Grigorov
See the quickstarts at http://www.jweekend.com/dev/LegUp On Mon, Jul 25, 2011 at 8:17 PM, eugenebalt eugeneb...@yahoo.com wrote: Hi, I have an existing Spring/Hibernate project currently using SpringMVC as the presentation layer, and I need to port it to Wicket. I looked at the quickstart

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread eugenebalt
Thanks, so I should choose Wicket 1.4.12, Spring 3.0.2, JPA 2.0 ? I didn't see a Hibernate option in that list. Hibernate is an implementation of JPA? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Replacing-Spring-MVC-with-Wicket-in-Existing-Spring-Hibernate

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread Bruno Borges
You should pick the last 1.4 stable version, as of the time of this email, would be 1.4.17. Secondly, Hibernate is an implementation of JPA and has no relationship with Wicket, but it has with Spring. You may drop all of your Spring MVC code, and keep the rest of its service and data layers. Why

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread eugenebalt
-in-Existing-Spring-Hibernate-project-tp3693395p3693688.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread Zilvinas Vilutis
You add a wicket filter in the web.xml and you're done! I've tried to use a wicket + spring + hibernate quickstart and posted the results here: http://blog.cikas.info/posts/27/dont-do-what-you-dont-need-to-do Regards Žilvinas Vilutis On Mon, Jul 25, 2011 at 10:15 PM, eugenebalt eugeneb

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread eugenebalt
to my teacher and he will be able to build/run the Web app on his laptop without any problems. Does he also have to set up Maven on his end?? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Replacing-Spring-MVC-with-Wicket-in-Existing-Spring-Hibernate-project

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread eugenebalt
Guys, you need to add a regular-Ant, non-Maven QuickStart to your QuickStart page. Right now it's not there, and this is severely limiting. I was hoping at least Wicket wouldn't force me to go through some bloated messy configuration to get a simple app in place, unlike Spring/Hibernate/etc

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread Randy Schnedler
You don't have to use maven. Download wicket and drop the main wicket jar into your WEB-INF/libs folder. Also you need the one dependency slf4j in the libs folder. Add the filter to web.xml and you're ready to run a basic wicket app. Most likely, you will also want some of the other wicket jars

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread eugenebalt
.n4.nabble.com/Replacing-Spring-MVC-with-Wicket-in-Existing-Spring-Hibernate-project-tp3693395p3694331.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread Randy Schnedler
this message in context: http://apache-wicket.1842946.n4.nabble.com/Replacing-Spring-MVC-with-Wicket-in-Existing-Spring-Hibernate-project-tp3693395p3694331.html Sent from the Users forum mailing list archive at Nabble.com

Re: Replacing Spring MVC with Wicket in Existing Spring/Hibernate project

2011-07-25 Thread jcgarciam
-over-slf4j.jar AND slf4j-jcl.jar on the class path, preempting StackOverflowError Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Replacing-Spring-MVC-with-Wicket-in-Existing-Spring-Hibernate-project-tp3693395p3694331.html Sent from the Users forum

hibernate and jasper reports

2011-07-20 Thread hariharansrc
i am having two maven projects, wicket hibernate integration using guice and wicket jasper reports integration using spring. Both project working independently well. Can we integrate both the projects into a single project. If so how? if not why? If any other solution available without integrating

Re: hibernate and jasper reports

2011-07-20 Thread Attila Király
Choose one from guice and spring and live happily ever after? Why are you using both of them? Attila 2011/7/20 hariharansrc hariharan...@gmail.com i am having two maven projects, wicket hibernate integration using guice and wicket jasper reports integration using spring. Both project working

Re: hibernate and jasper reports

2011-07-20 Thread hariharansrc
Is it possible or not that only i am asking because both will be processed independently -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/hibernate-and-jasper-reports-tp3680767p3682655.html Sent from the Users forum mailing list archive at Nabble.com

to integrate wicket with hibernate using spring

2011-07-04 Thread hariharansrc
i want to integrate wicket with hibernate using spring what can i do to do that i know wicket and hibernate to some extent is it necessary to learn spring framework for integrating that i searched spring hibernate integration i found some materials then what wicket actually does int that regard

Re: to integrate wicket with hibernate using spring

2011-07-04 Thread Bruno Borges
Wicket is a presentation framework. Your task is to integrate Spring and Hibernate in the first place. Later, you can just use Hibernate objects returned by Spring methods into Wicket with classes of type IModel. Although I don't recommend that. IMO you should work with detatched objects, value

Re: to integrate wicket with hibernate using spring

2011-07-04 Thread Martin Grigorov
=mycompany -Dversion=1.0-SNAPSHOT -Dpackage=com.mycompany It is generated by the tool at http://www.jweekend.com/dev/LegUp On Mon, Jul 4, 2011 at 5:53 PM, Bruno Borges bruno.bor...@gmail.com wrote: Wicket is a presentation framework. Your task is to integrate Spring and Hibernate in the first place

Re: to integrate wicket with hibernate using spring

2011-07-04 Thread James Carman
at http://www.jweekend.com/dev/LegUp On Mon, Jul 4, 2011 at 5:53 PM, Bruno Borges bruno.bor...@gmail.com wrote: Wicket is a presentation framework. Your task is to integrate Spring and Hibernate in the first place. Later, you can just use Hibernate objects returned by Spring methods into Wicket

Re: Wicket / Hibernate / Databinder (dead?)

2011-05-30 Thread jbrookover
have some work regarding integration for the conversation scope with spring. So far, all I've done is change the count() casting from (Integer) to (Number) since later versions of Hibernate return a Long. I'm on vacation for this week, but will be looking into it later. I'm a 100% git newb

Wicket / Hibernate / Databinder (dead?)

2011-05-28 Thread jbrookover
Hey all, First off, apologies for a potential dual post - I used nabble and posted to a super-level to this list. We've been using Wicket 1.4 + Hibernate 3.3 + Databinder 1.3.0 for quite some time now. I wanted to update to a more recent version of Hibernate, but Databinder was incompatible

Re: Wicket / Hibernate / Databinder (dead?)

2011-05-28 Thread James Carman
You could check out Wicketopia. It has support for Hibernate. You can run the example application to see how it works. On Sat, May 28, 2011 at 11:48 AM, jbrookover jbrooko...@cast.org wrote: Hey all, First off, apologies for a potential dual post - I used nabble and posted to a super-level

Re: Wicket / Hibernate / Databinder (dead?)

2011-05-28 Thread Daniel Toffetti
jbrookover wrote: We've been using Wicket 1.4 + Hibernate 3.3 + Databinder 1.3.0 for quite some time now. I wanted to update to a more recent version of Hibernate, but Databinder was incompatible and seems pretty dead. My question is what do people use for their bridge between Wicket

Re: Wicket / Hibernate / Databinder (dead?)

2011-05-28 Thread jbrookover
James Carman wrote: You could check out Wicketopia. It has support for Hibernate. You can run the example application to see how it works. I've been doing some searching and found many of your replies to this statement, but I was thinking without Spring involvement. I don't have any

Re: Wicket / Hibernate / Databinder (dead?)

2011-05-28 Thread James Carman
Wicketopia doesn't require spring. On May 28, 2011 3:13 PM, jbrookover jbrooko...@cast.org wrote: James Carman wrote: You could check out Wicketopia. It has support for Hibernate. You can run the example application to see how it works. I've been doing some searching and found many of your

Re: Wicket / Hibernate / Databinder (dead?)

2011-05-28 Thread Rodolfo Hansen
for Hibernate. You can run the example application to see how it works. I've been doing some searching and found many of your replies to this statement, but I was thinking without Spring involvement. I don't have any solid reasons for not using Spring other than I have no idea what

Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread Henrique Boregio
Hi, I've been searching for a simple way to do this but if I've only found over-complicated tutorials. I am trying to setup my lo4j properties file to do something like: everything wicket -- wicket.log everything hibernate -- hibernate.log everything my_web_app -- my_app.log everything tomcat

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread James Carman
: everything wicket -- wicket.log everything hibernate -- hibernate.log everything my_web_app -- my_app.log everything tomcat -- tomcat.log Anyone already have something like this setup? Many thanks once again

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread Henrique Boregio
It asks how to redirect all of wicket logging to a separate log file other then the application's log file. So, this is a wicket question. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands,

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread nino martinez wael
Just use different appenders for the different files. However do you know howto get tomcats std out log rolled, without configuring juli or using something like logrotate? Im surprised its not done by default tomcat 7 On May 6, 2011 4:20 PM, Henrique Boregio hbore...@gmail.com wrote: It asks how

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread James Carman
Well, since you're asking about a specific logging provider (log4j), then it's a log4j question. On Fri, May 6, 2011 at 10:20 AM, Henrique Boregio hbore...@gmail.com wrote: It asks how to redirect all of wicket logging to a separate log file other then the application's log file. So, this is a

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread Martin Grigorov
I think it is a question to Oracle since all of the technologies are Java based :-) @Henrique, Nino: indeed this is Log4J question. On Fri, May 6, 2011 at 4:33 PM, James Carman ja...@carmanconsulting.com wrote: Well, since you're asking about a specific logging provider (log4j), then it's a

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread nino martinez wael
I agree its a log4j question... On May 6, 2011 4:37 PM, Martin Grigorov mgrigo...@apache.org wrote: I think it is a question to Oracle since all of the technologies are Java based :-) @Henrique, Nino: indeed this is Log4J question. On Fri, May 6, 2011 at 4:33 PM, James Carman

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread Gabriel Landon
Maybe you can use : http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/spi/Filter.html And yes it's a log4j question :-) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Separate-log-files-tomcat-hibernate-wicket-etc-tp3502793p3503807.html Sent from

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread Henrique Boregio
Fine..majority wins, it's a log4j question haha Thanks anyways for the tips. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Separate log files (tomcat, hibernate, wicket, etc)

2011-05-06 Thread Clint Checketts
A hint to direct you: setup different 'categories' based on package you want to split it out on, then setup a separate appender for each of those categories to go to your separate files. I don't have an example for you though. Maybe this:

Re: Wicket 1.5-RC3 with hibernate-annotation

2011-04-27 Thread jcgarciam
I think you can try to exclude the slfj dependency that wicket ships on, since its being already contributed by Hibernate or just update you the dependency groupIdorg.slf4j/groupId artifactIdslf4j-log4j12/artifactId * version1.6.1/version* /dependency To the version that match the one provided

Re: Wicket 1.5-RC3 with hibernate-annotation

2011-04-27 Thread Lucky Spiff
That's it, I forced the usage of slf4j 1.6.1 and the propblem was solved. Thank you! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-RC3-with-hibernate-tp3477380p3478670.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket-Spring Hibernate dao

2011-03-02 Thread ookpalm
Thanks everyone. I will go for using the new operator for my domain object since there is no simple way to inject and it is not really nescessary to inject bean to object in this case. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-Hibernate-dao

Re: Wicket-Spring Hibernate dao

2011-03-02 Thread James Carman
for using the new operator for my domain object since there is no simple way to inject and it is not really nescessary to inject bean to object in this case. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-Hibernate-dao-tp3320134p3332713.html Sent

Wicket-Spring Hibernate dao

2011-02-22 Thread ookpalm
Hi I have a question about wicket spring. My project is setup with Wicket-Spring plus using Hibernate annotation. I created a Dao object says CatDao and created a entity for relational mapping with hibernate says Cat. Both are created by using Spring applicationContext file. On my page says

Re: Wicket-Spring Hibernate dao

2011-02-22 Thread Igor Vaynberg
project is setup with Wicket-Spring plus using Hibernate annotation. I created a Dao object says CatDao and created a entity for relational mapping with hibernate says Cat. Both are created by using Spring applicationContext file. On my page says AddCat I show the default values of Cat object

Re: Wicket-Spring Hibernate dao

2011-02-22 Thread Dan Griffin
I think that it happened because spring wrapped a proxy around your bean, and then hibernate couldn`t recognize its class and which table it should look for. I`m not sure if you can get around it, but I agree with Igor that you should create your domain objects with new, rather than inject

  1   2   3   4   5   6   7   >