Re: Wicket + Spring DM + Hibernate

2009-06-23 Thread Daniel Dominik Holúbek
Yes, that's the way it's meant to work :) On Tue, Jun 23, 2009 at 3:25 PM, James Carman wrote: > On Tue, Jun 23, 2009 at 8:26 AM, Daniel Dominik Holúbek > wrote: > > > > I appreciate your help, of course :)You know, I'm trying to create a web > app > > consisting of independent modules. Then if

Re: Wicket + Spring DM + Hibernate

2009-06-23 Thread James Carman
How many modules do you have? Do you really need to be able to do this with your live production server? I'm just trying to get an idea behind the decision behind going with this sort of an architecture. Perhaps we can offer up an alternative that would work with the existing Wicket stuff so tha

Re: Wicket + Spring DM + Hibernate

2009-06-23 Thread Igor Vaynberg
isnt a big point of osgi to manage cross-bundle-dependencies? so if you inject panel A using panel A's context how does panel A ever see beans that are defined in module B? eg if panel A needs a sessionfactory which is defined in module B? -igor On Tue, Jun 23, 2009 at 5:36 AM, Daniel Stoch wro

Re: Wicket + Spring DM + Hibernate

2009-06-23 Thread Daniel Stoch
Ok, at least two scenarios are possible: 1. You have a module A with PanelA and you want to inject someDAO bean, which is defined inside module A (in the same module where class PanelA is defined). Then you can use classic @SpringBean annotation, as I wrote in my previous post. 2. You want to use P

Wicket, Spring 3 and UnitTesting

2010-01-26 Thread Jochen Mader
Just figured out how to do UnitTesting with Spring 3 and Wicket. Spring 3 introduced a check to see if a given context was a WebApplicationContext. That means ApplicationContextMock is not suitable for testing (giving the infamous " No WebApplicationContext found: no ContextLoaderLis

Re: Wicket + Spring 3 + Hibernate

2010-04-15 Thread Sigmar Muuga
> Finally, here is the dependency list in Maven for my Spring and Hibernate > libraries with wicket.version=1.4.7 and spring.version=3.0.1.RELEASE: > >org.apache.wicket >wicket-spring >${wicket.version} > > >org.sprin

Re: Wicket + Spring 3 + Hibernate

2010-04-15 Thread Steven Haines
nFactory.java:189) at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:322) ... 53 more Apr 15, 2010 11:05:11 AM org.apache.catalina.core.ApplicationContext log INFO: Closing Spring root WebApplicationContext -

Re: Wicket + Spring 3 + Hibernate

2010-04-15 Thread Steven Haines
apache.org Sent: Thu, April 15, 2010 11:14:49 AM Subject: Re: Wicket + Spring 3 + Hibernate I posted a few lines from the error, but here is the complete stack trace. My initial searches on this pointed to a circular dependency caused by autowiring, which may or may not be the case - when I removed th

Re: Wicket + Spring 3 + Hibernate

2010-04-15 Thread Mauro Ciancio
framework.org/schema/util/spring-util-3.0.xsd";> > > I appreciate your responses and I hope that someone can find my couple days > of troubleshooting helpful :) > > Thanks > Steve > > > > > - Original Message > From: Steven Haines > To: users

wicket + spring + jpa reference example?

2008-08-06 Thread francisco treacy
hi, i need to develop a project with wicket + spring + jpa. i'm not used lately to this setup, so i tried to build it up, not without some trouble. so my question here is: do you know a current good wicket + spring + jpa reference/example? earlier today i checked out qwicket, but there&#

Re: Wicket-spring-tomcat integration

2008-12-15 Thread Richard Allen
The url-pattern only supports using a wildcard at the end of the pattern (e.g., "/myapp/*") or as a extension mapping prefix (e.g., *.do). See section SRV.11.2 of the servlet specification, which can be downloaded from here: http://jcp.org/aboutJava/communityprocess/final/jsr154/index.html Therefo

Re: Wicket / Spring bean annotations

2009-01-20 Thread Jeremy Thomerson
Although I do not know for sure, I would think not, because my understanding is that a proxy is created that is safe to be serialized. However, I would ask *why* do this? If you're passing it to another component, why not just have that component also use an annotation? I wouldn't think that pas

RE: Wicket / Spring bean annotations

2009-01-20 Thread Andrew Humphries (MEL)
ry 2009 11:03 AM To: users@wicket.apache.org Subject: Re: Wicket / Spring bean annotations Although I do not know for sure, I would think not, because my understanding is that a proxy is created that is safe to be serialized. However, I would ask *why* do this? If you're passing it to anoth

Re: Wicket / Spring bean annotations

2009-01-20 Thread James Carman
und the reference. I'll stick to doing > that, but I was also intersted out of curiosity. > > Andrew > > -Original Message- > From: Jeremy Thomerson [mailto:jer...@wickettraining.com] > Sent: Wednesday, 21 January 2009 11:03 AM > To: users@wicket.apache.org >

Re: Wicket / Spring bean annotations

2009-01-20 Thread Igor Vaynberg
some components and not > others, and then passing around the reference. I'll stick to doing > that, but I was also intersted out of curiosity. > > Andrew > > -Original Message- > From: Jeremy Thomerson [mailto:jer...@wickettraining.com] > Sent: Wednesday, 21 January

Re: Wicket / Spring bean annotations

2009-01-20 Thread Igor Vaynberg
lso intersted out of curiosity. >> >> Andrew >> >> -Original Message- >> From: Jeremy Thomerson [mailto:jer...@wickettraining.com] >> Sent: Wednesday, 21 January 2009 11:03 AM >> To: users@wicket.apache.org >> Subject: Re: Wicket / Spring bean annotations >

problem with wicket + spring + hibernate

2010-08-10 Thread Will Martinez A .
org.apache.wicket wicket-ioc ${wicket.version} org.apache.wicket wicket-spring ${wicket.version}

Re: Wicket-Spring Hibernate dao

2011-02-22 Thread Igor Vaynberg
you should be doing cat=new cat() anyways. i assume the "default" cat is a singleton in your application context, in which case you do not want it to be persisted anyways. -igor On Tue, Feb 22, 2011 at 1:59 PM, ookpalm wrote: > > Hi > > I have a question about wicket spr

Re: Wicket-Spring Hibernate dao

2011-02-22 Thread Dan Griffin
them. you should be doing cat=new cat() anyways. i assume the "default" cat is a singleton in your application context, in which case you do not want it to be persisted anyways. -igor On Tue, Feb 22, 2011 at 1:59 PM, ookpalm wrote: Hi I have a question about wicket spring. My

Re: Wicket-Spring Hibernate dao

2011-02-22 Thread Nivedan Nadaraj
e persisted anyways. >> >> -igor >> >> On Tue, Feb 22, 2011 at 1:59 PM, ookpalm wrote: >> >> >>> Hi >>> >>> I have a question about wicket spring. >>> >>> My project is setup with Wicket-Spring plus using Hibernate an

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
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-tp3320134p33

Wicket Spring and JSR 330

2011-09-20 Thread Fabio Cechinel Veronez
Hello all, Up until now I have been using SpringBean annotation to inject spring beans at my page instance. By I would like to know if it possible to use JSR 330 annotations like Inject and Qualifier to indicate to Spring what bean should be injected. Thanks in advance. -- Fabio Cechinel Veron

Re: Wicket+Spring 4 integration

2015-09-24 Thread Martin Grigorov
at 3:56 PM, Sandor Feher wrote: > Hi, > > I'm just wondering when do you plan to support spring 4 in wicket-spring > module ? > I try to implement an Oauth2 server on top of my Wicket app and oauth2 (at > least 2.0.6 and above) requires spring 4. Right now I'm not able

Re: Wicket+Spring 4 integration

2015-09-24 Thread Sandor Feher
So this means if I want to use Spring 4 then I must upgrade to Wicket 7. (Currently I use 6.20.0) Can I do it safely ? Is 7.0 stable enough ? TIA,Sandor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672033.html Sent from the

Re: Wicket+Spring 4 integration

2015-09-24 Thread Mihir Chhaya
to use Spring 4 then I must upgrade to Wicket 7. > (Currently I use 6.20.0) > > Can I do it safely ? Is 7.0 stable enough ? > > TIA,Sandor > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672033.ht

Re: Wicket+Spring 4 integration

2015-09-24 Thread Sandor Feher
Sounds good. I have up to 15 pages , wicket 6, hibernate 4 and spring 3. Not so simple but not a nightmare. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672035.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket+Spring 4 integration

2015-09-24 Thread Martin Grigorov
; -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672033.html > Sent from the Users forum mailing list archive at Nabble.com. > >

Re: Wicket+Spring 4 integration

2015-09-24 Thread Sandor Feher
ig Springs migration guide but did not found any clue related to my issue. I reverted back to 3.2.5 and everything worked like expected. So this is the whole story. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672037.html Sent from

Re: Wicket+Spring 4 integration

2015-09-24 Thread Richard W. Adams
FYI, we use Spring 4.0.5 with Wicket 1.7.5 & have not encountered any issues. Your mileage may vary. From: Sandor Feher To: users@wicket.apache.org Date: 09/24/2015 01:37 PM Subject:Re: Wicket+Spring 4 integration This email originated from outside of the company. Pl

Re: Wicket+Spring 4 integration

2015-09-24 Thread Martin Grigorov
g > Date: 09/24/2015 01:37 PM > Subject:Re: Wicket+Spring 4 integration > > > > This email originated from outside of the company. Please use discretion > if opening attachments or clicking on links. > > I tried to do but I experienced some problems. They might be rel

Re: Wicket+Spring 4 integration

2015-09-26 Thread Sandor Feher
Spring Security 4. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672048.html Sent from the Users forum mailing list archive at Nabble.com

Re: Wicket+Spring 4 integration

2015-09-26 Thread Martin Grigorov
; login-processing-url="/"/> > > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4672048.html > Sent from the Users forum mailing list archive a

Re: Wicket+Spring 4 integration

2016-10-05 Thread mr
n-6.24.0 Spring-security version- 4.1.3 Can someone help me? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4675645.html Sent from the Users forum mailing list archiv

Re: Wicket+Spring 4 integration

2016-10-05 Thread Martin Grigorov
meone help me? > > -- > View this message in context: http://apache-wicket.1842946. > n4.nabble.com/Wicket-Spring-4-integration-tp4672031p4675645.html > Sent from the Users forum mailing list archive at Nabble.com. > > --

Re: Wicket Spring Boot Article

2017-04-02 Thread Andrea Del Bene
You're welcome! ps: anybody is in contact with Marc ? On 2 Apr 2017 16:55, "Tobias Soloschenko" wrote: Hi, just wanted to point out that this is really great: https://mobile.twitter.com/apache_wicket/status/847763903249600513 I think for Spring - Spring Boot is the future. Thanks for it Marc

Re: Wicket Spring Boot Article

2017-04-02 Thread Tobias Soloschenko
sadly not. I was just in contact with him, because of metrics, but that is some time ago. kind regards Tobias > Am 02.04.2017 um 16:58 schrieb Andrea Del Bene : > > You're welcome! > ps: anybody is in contact with Marc > ? > > On 2 Apr 2017 16:55, "Tobias Soloschenko" > wrote: > > Hi, > >

Re: Wicket Spring Boot Article

2017-04-02 Thread Marc
bed the mailing list :). Thanks for the article! Btw I've just released version 2.0.1 which uses Wicket 8.0.0-M5. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-Boot-Article-tp4677570p4677575.html Sent from the Users forum mailing l

Re: Wicket Spring Boot Article

2017-04-02 Thread Andrea Del Bene
to your project) . @Andrea I've subscribed the mailing list :). Thanks for the article! I suspected it :-) Btw I've just released version 2.0.1 which uses Wicket 8.0.0-M5. Thanks for your work! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/W

Wicket spring security sample app

2012-01-14 Thread Brian Lavender
Does someone have a sample of the current spring security with Wicket auth-roles? One that I can do the following. mvn jetty:run and see it run? brian -- Brian Lavender http://www.brie.com/brian/ "There are two ways of constructing a software design. One way is to make it so simple that ther

Re: Tighter Wicket-Spring integration

2012-02-06 Thread vineet semwal
i think you need something like wicketstuff push 2012/2/7 Lukáš Šembera : > Hello, > my application communicates with various erlang processes in a > background. The communication is done via AMQP messages and handling > of those messages in already done in the spring-based service layer. > Now I'

Re: Tighter Wicket-Spring integration

2012-02-06 Thread kamiseq
also you need to consider that wicket components will be accessed from different threads pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski@gmail.com __ - To unsubscribe, e-mail: users-unsubscr...@wick

Re: Tighter Wicket-Spring integration

2012-06-21 Thread jaffa
-wicket.1842946.n4.nabble.com/Tighter-Wicket-Spring-integration-tp4363175p4650157.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands

Re: Wicket+Spring+JUnit testing

2012-09-17 Thread Martin Grigorov
t; SpringComponentInjector injector = new > SpringComponentInjector(this, ctx); > getComponentInstantiationListeners().add(injector); > injector.inject(this); > } > }); > > } > > @Test > public voi

Re: Wicket+Spring+JUnit testing

2012-09-17 Thread Sandor Feher
Hi, An unitializes session variable caused my problem. First I thought it was injecting problem. Thank you for advices now I'm green :). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Spring-JUnit-testing-tp4652021p4652030.html Sent from the Users

[wicket-spring] Change m2 Dependency Scope

2008-02-15 Thread James Carman
I have a project where I use wicket-spring. I want to use a different version of Spring than what wicket-spring declares as one of its dependencies. I can do that, but it requires that I include some exclusions on my dependency. Can we change the scope of the dependencies in the wicket-spring

about servlet and wicket-spring sequence

2008-02-28 Thread Mead Lai
Hi, I have a Servlet "ViewSurvey.do", it access the Spring Context from wicket Application. MyApplication app = (MyApplication) RequestCycle.get().getApplication(); but there is some thing strange: 1,if I visit the Servlet "ViewSurvey.do" first, It will cause some error, and all the applica

wicket-spring dependency in maven repository

2008-04-18 Thread Doug Donohoe
I'm using wicket-spring-annot and ran into a small problem with maven dependencies. The wicket-spring-annot project depends on wicket-spring. Wicket-spring in turn depends on the entire monolithic spring.jar instead of the now-preferred spring-core.jar. This caused a problem in my enviro

Re: wicket-spring-annot 1.4-m1?

2008-04-30 Thread Martijn Dashorst
yes On 4/30/08, James Carman <[EMAIL PROTECTED]> wrote: > Is this gone now that 1.4 is JDK5+? Is this stuff just bundled in > with wicket-spring? > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > Fo

Re: wicket-spring-annot 1.4-m1?

2008-04-30 Thread Leszek Gawron
James Carman wrote: Is this gone now that 1.4 is JDK5+? Is this stuff just bundled in with wicket-spring? yes -- Leszek Gawron http://www.mobilebox.pl/krs.html CTO at MobileBox Ltd. - To unsubscribe

Re: wicket-spring-annot 1.4-m1?

2008-04-30 Thread James Carman
ok, thanks. That makes sense. On Wed, Apr 30, 2008 at 10:32 AM, Leszek Gawron <[EMAIL PROTECTED]> wrote: > James Carman wrote: > > > Is this gone now that 1.4 is JDK5+? Is this stuff just bundled in > > with wicket-spring? > > > > yes > > -- >

Re: wicket-spring-annot 1.4-m1?

2008-04-30 Thread Gerolf Seitz
t;[EMAIL PROTECTED]> > wrote: > > James Carman wrote: > > > > > Is this gone now that 1.4 is JDK5+? Is this stuff just bundled in > > > with wicket-spring? > > > > > > > yes > > > > -- > > Les

Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-16 Thread Jeffrey Schneller
At the link[1] it describes how to configure wicket to use Spring and Hibernate. In the applicationContext.xml file there is reference to a n interceptor bean. What is this interceptor bean? What is the definition of this bean? Everything else seems to make sense. Also how would one move th

Re: Wicket, Spring 3 and UnitTesting

2010-01-26 Thread Martin Grigorov
Please add this to http://cwiki.apache.org/WICKET/spring.html On Tue, 2010-01-26 at 11:48 +0100, Jochen Mader wrote: > Just figured out how to do UnitTesting with Spring 3 and Wicket. > Spring 3 introduced a check to see if a given context was a > WebApplicationContext. T

Re: Wicket, Spring 3 and UnitTesting

2010-01-26 Thread mbrictson
context/support/StaticWebApplicationContext.html Jochen Mader-2 wrote: > > Just figured out how to do UnitTesting with Spring 3 and Wicket. > Spring 3 introduced a check to see if a given context was a > WebApplicationContext. That means ApplicationContextMock is not suitable > for >

Re: Wicket, Spring 3 and UnitTesting

2010-01-28 Thread Jochen Mader
Sorry for my late answer. StaticWebApplicationContext doesn't cut it for me. Your example contains a small mistake: Inserting the mock-object won't work as registerSingleton expects to get a Class. As I want to create mock objects with EasyMock there are two approaches (as far as I know). The one

Re: Wicket, Spring 3 and UnitTesting

2010-01-28 Thread mbrictson
The API is bit confusing: registerSingleton() on StaticWebApplicationContext takes a class, but registerSingleton() on ConfigurableListableBeanFactory takes a bean. That is why I first call getBeanFactory() in my example. ctx.getBeanFactory().registerSingleton(...) I use StaticWebApplicationCont

Re: Wicket, Spring 3 and UnitTesting

2010-01-28 Thread Jochen Mader
Oh man, you are right. My eyes got a little selective on that line :)

Re: Wicket, Spring 3 and UnitTesting

2010-01-29 Thread Kent Tong
Jochen Mader-2 wrote: > > Just figured out how to do UnitTesting with Spring 3 and Wicket. > An alternative is to use http://wicketpagetest.sourceforge.net. It works fine with Spring 3.0 without changing any of your code. - -- Kent Tong Better way to unit test Wicket pages (http://wicketp

Re: wicket + spring + jpa reference example?

2008-08-06 Thread francisco treacy
it's me again. minutes after the post i found my way out of that applicationContext maze... but thanks anyway! francisco On Wed, Aug 6, 2008 at 11:25 PM, francisco treacy <[EMAIL PROTECTED]> wrote: > hi, > > i need to develop a project with wicket + spring + jpa. i'm

Re: wicket + spring + jpa reference example?

2008-08-06 Thread Ryan Gravener
, 2008 at 5:25 PM, francisco treacy <[EMAIL PROTECTED] > wrote: > hi, > > i need to develop a project with wicket + spring + jpa. i'm not used > lately to this setup, so i tried to build it up, not without some > trouble. > > so my question here is: do you know a curr

Re: wicket + spring + jpa reference example?

2008-08-07 Thread francisco treacy
oject for wicket+hibernate+spring+flex+blazeds in the works, > but it is far from perfect: > http://code.google.com/p/wicket-flex-blazeds/ > > On Wed, Aug 6, 2008 at 5:25 PM, francisco treacy <[EMAIL PROTECTED] >> wrote: > >> hi, >> >> i need to develop a proj

Re: wicket + spring + jpa reference example?

2008-08-07 Thread shetc
Buy Wicket In Action from Manning Publishers -- it has a useful Wicket + Spring + Hibernate example. Replace Hibernate with the JPA equivalents. -- View this message in context: http://www.nabble.com/wicket-%2B-spring-%2B-jpa-reference-example--tp18859884p18876793.html Sent from the Wicket

Re: wicket + spring + jpa reference example?

2008-08-07 Thread francisco treacy
- it has a useful Wicket + > Spring + Hibernate example. Replace Hibernate with the JPA equivalents. > -- > View this message in context: > http://www.nabble.com/wicket-%2B-spring-%2B-jpa-reference-example--tp18859884p18876793.html > Sent from the Wicket - User ma

How to Jquery, Json, wicket spring?

2007-11-04 Thread Pen
integrate Wicket(1.3) with spring using new spring annotations 2.5? thanks Pen -- View this message in context: http://www.nabble.com/How-to-Jquery%2C-Json%2C-wicket-spring--tf4749547.html#a13581144 Sent from the Wicket - User mailing list archive at Nabble.com

SV: problem with wicket + spring + hibernate

2010-08-10 Thread Wilhelmsen Tor Iver
I noticed that you ignored the warning here: > by placing the Wicket filters first. - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket Spring and JSR 330

2011-09-20 Thread Igor Vaynberg
currently it is not, but we are looking into it... -igor On Tue, Sep 20, 2011 at 5:08 PM, Fabio Cechinel Veronez wrote: > Hello all, > > Up until now I have been using SpringBean annotation to inject spring > beans at my page instance. > > By I would like to know if it possible to use JSR 330 an

Re: Wicket Spring and JSR 330

2011-09-20 Thread Fabio Cechinel Veronez
Is there some issue we could follow? On Tue, Sep 20, 2011 at 10:00 PM, Igor Vaynberg wrote: > currently it is not, but we are looking into it... > > -igor > > On Tue, Sep 20, 2011 at 5:08 PM, Fabio Cechinel Veronez > wrote: >> Hello all, >> >> Up until now I have been using SpringBean annotation

Re: Wicket Spring and JSR 330

2011-09-20 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-4064 On Wed, Sep 21, 2011 at 4:49 AM, Fabio Cechinel Veronez wrote: > Is there some issue we could follow? > > On Tue, Sep 20, 2011 at 10:00 PM, Igor Vaynberg > wrote: >> currently it is not, but we are looking into it... >> >> -igor >> >> On Tue, Se

Wicket Spring boot - use spring devtools

2019-08-28 Thread Per Newgro
Hello *, I migrate my current wicket app to spring boot version (https://github.com/MarcGiffing/wicket-spring-boot). So far it was straightforward. But now i experience a problem with inclusion of org.springframework.boot

Re: Wicket spring security sample app

2012-01-15 Thread Martin Grigorov
See https://github.com/jwcarman/Wicketopia On Sun, Jan 15, 2012 at 7:57 AM, Brian Lavender wrote: > Does someone have a sample of the current spring security with Wicket > auth-roles? > One that I can do the following. > > mvn jetty:run > > and see it run? > > brian > -- > Brian Lavender > http:

Re: Wicket spring security sample app

2012-01-15 Thread malebu
itional commands, e-mail: users-help@.apache >> > > > > -- > Martin Grigorov > jWeekend > Training, Consulting, Development > http://jWeekend.com > > ---

Re: Wicket spring security sample app

2012-01-17 Thread Brian Lavender
On Sun, Jan 15, 2012 at 12:36:48PM +0200, Martin Grigorov wrote: > See https://github.com/jwcarman/Wicketopia Maybe I missed something, but I wasn't able to do a mvn jetty:run or did the war package run after generating a war file. brian -- Brian Lavender http://www.brie.com/brian/ "There a

Re: Wicket spring security sample app

2012-01-18 Thread James Carman
I don't know if the plugin is turned on for the example application. But, you'd need to make sure you are in the example module before you try. On Wed, Jan 18, 2012 at 1:15 AM, Brian Lavender wrote: > On Sun, Jan 15, 2012 at 12:36:48PM +0200, Martin Grigorov wrote: >> See https://github.com/jwcar

Re: Wicket spring security sample app

2012-01-18 Thread James Carman
Either way, you can open it in your IDE and run the jetty test server that's included. That's how I run it usually so that I can easily debug and play around. On Wed, Jan 18, 2012 at 6:57 AM, James Carman wrote: > I don't know if the plugin is turned on for the example application. > But, you'd

Re: Wicket spring security sample app

2012-01-19 Thread Brian Lavender
James, I cloned the repository. $ git clone https://github.com/jwcarman/Wicketopia.git $ cd Wicketopia $ mvn eclipse:eclipse a few errors including the below error. [ERROR] Failed to execute goal on project wicketopia-persistence: Could not resolve dependencies for project org.wicketopia:wic

Re: Wicket spring security sample app

2012-01-20 Thread James Carman
Run mvn install from the top-level directory. Then, in the example webapp project, there is a class called Start: https://github.com/jwcarman/Wicketopia/blob/master/example/src/test/java/org/wicketopia/example/web/util/Start.java Run that. Good luck! On Thu, Jan 19, 2012 at 5:35 PM, Brian Lave

Re: Wicket spring security sample app

2012-01-23 Thread Brian Lavender
The following worked. $ mvn install How do I run the Start class? I tried the following, but I get a class not found error. Usually, I have run classes inside the src/java area, but not in src/test . $ cd example $ mvn exec:java -Dexec.mainClass="org.wicketopia.example.web.util.Start" brian

Re: Wicket spring security sample app

2012-01-23 Thread Brian Lavender
Quick Start for getting Wicktopia running or at least see it running. I wasn't sure how to run Wicketopia. Certainly James can post these details, but I thought I would since he hasn't yet. Or, maybe it is posted somewhere else. $ git clone https://github.com/jwcarman/Wicketopia.git

Wicket+Spring Security the Wicket way

2012-09-18 Thread Luis Pureza
Hi, I'm new to both Wicket and Spring Security, so bear that in mind :) I'm trying to integrate Wicket and Spring Security into my webapp, but I'm not feeling happy with the end result. As you might know, Spring Security works by listening to requests sent to virtual URLs. So, for example, to log

Re: [wicket-spring] Change m2 Dependency Scope

2008-02-15 Thread Igor Vaynberg
please create a jira issue so this change shows up in the changelog. -igor On Fri, Feb 15, 2008 at 9:39 AM, James Carman <[EMAIL PROTECTED]> wrote: > I have a project where I use wicket-spring. I want to use a different > version of Spring than what wicket-spring declares a

RE: about servlet and wicket-spring sequence

2008-02-28 Thread Mead Lai
eyAction /surveyAction.do ViewSurvey /viewSurvey.do WicketApplication /manage/*.html /manage/index.html > From: [EMAIL PROTECTED]> To: users@wicket.apache.org> Subject: about servlet and wicket-spring sequence> Date: Fri, 29 Feb 2008 10:10:16 +0800> > > Hi,> I hav

Re: about servlet and wicket-spring sequence

2008-02-28 Thread James Carman
The context loader listener will put the Spring context into the ServletContext at application startup. You can access it via the org.springframework.web.context.support.WebApplicationContextUtils class. You don't need Wicket at all for this. On 2/28/08, Mead Lai <[EMAIL PROTECTED]> wrote: > >

Re: wicket-spring dependency in maven repository

2008-04-18 Thread Erik van Oosten
Doug Donohoe wrote: I'm using wicket-spring-annot and ran into a small problem with maven dependencies. The wicket-spring-annot project depends on wicket-spring. This has come up a number of times already. Hopefully not as often in the future as it is now also on the wiki :)

Starting with Wicket, Spring, Maven and JDBC

2009-09-23 Thread Pedro Sena
Hi Guys, I'm new to Wicket with Spring(I never used Spring before, just Seam). I'm using lolite but it comes with JPA instead of JDBC. I would like to know if there is some archetype for the setup that I described in the title. I already checked wicket stuff if no luck. Thanks in advance, -- /*

Wicket + Spring + Hibernate event in ISTANBUL (Turkey)

2009-10-15 Thread Altuğ B . Altıntaş
Hi all; Today we will organize a medium size event. In that event, we will present hands on session about Wicket + Spring + Hibernate. This event will be in Istanbul, Besiktasi Bahcesehir University at 19.00 (local time) http.//www.java.org.tr Feel free to attend this event. Regards

Re: Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-17 Thread James Carman
ed change or replace a file.  The configuration is at the server level > [in the server context] and it is pulled from there. Isn't this a Spring question? The Wicket/Spring integration basically lets you "talk" to your Spring beans (by using @SpringBean annotation to inject them).

RE: Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-17 Thread Loritsch, Berin C.
chnel...@envisa.com] Sent: Monday, November 16, 2009 12:38 PM To: users@wicket.apache.org Subject: Wicket + Spring + Hibernate - Wicket-In-Action At the link[1] it describes how to configure wicket to use Spring and Hibernate. In the applicationContext.xml file there is reference to a n interc

Re: Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-18 Thread Martijn Dashorst
The interceptor can be safely removed. It was necessary for the project I was working on, but you probably don't need it. JDBC connection settings are best done through a DataSource and specified at the container level instead of programmatically. Martijn On Mon, Nov 16, 2009 at 6:38 PM, Jeffrey

Re: Wicket + Spring + Hibernate - Wicket-In-Action

2009-11-18 Thread Martijn Dashorst
The interceptor can be safely removed. It was necessary for the project I was working on, but you probably don't need it. JDBC connection settings are best done through a DataSource and specified at the container level instead of programmatically. Martijn On Mon, Nov 16, 2009 at 6:38 PM, Jeffrey

Re: How to Jquery, Json, wicket spring?

2007-11-04 Thread David Bernard
Hi, I started the wicketstuff-jquery project, currently there is no doc/wiki, only the [source][1] is available and a demo application ([source][2], [war][3]). For the communication with between client and server, I used the native Wicket API, simpler than trying to "write it" in JSON (client a

Re: How to Jquery, Json, wicket spring?

2007-11-05 Thread Pen
- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/How-to-Jquery%2C-Json%2C-wicket-spring--tf4749547.html#a13592076 Sent from the Wicket

Re: How to Jquery, Json, wicket spring?

2007-11-06 Thread Pen
ons 2.5? >> >> thanks >> Pen > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message

wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
if this is the way it is supposed to be? ( I read so far that this disables a big part of springs-transaction handling support but didnt see any impacts so far) Has anyone a different aproach/ solution for this using wicket + spring with JPA? Best, Korbinan

Wicket + spring + jpa/ hibernate = lazy load exception

2008-11-03 Thread JulianS
I am experiencing exactly the problem outlined in the subject of this post, and I would really appreciate any help I can get, as I am under a deadline. It's the first time I'm using Wicket with JPA, and I just don't understand why this isn't working. I have a Wicket dataprovider that looks like

Re: wicket-spring dependency in maven repository

2008-11-04 Thread Antony Stubbs
I've opened a jira issue https://issues.apache.org/jira/browse/WICKET-1913 Erik van Oosten wrote: > > Doug Donohoe wrote: >> I'm using wicket-spring-annot and ran into a small problem with maven >> dependencies. The wicket-spring-annot project depends on wicket-sp

RE: SV: problem with wicket + spring + hibernate

2010-08-11 Thread Will Martinez A .
d it, some one can tell why? Thanks, Will > From: toriv...@arrive.no > To: users@wicket.apache.org > Date: Wed, 11 Aug 2010 08:50:01 +0200 > Subject: SV: problem with wicket + spring + hibernate > > I noticed that you ignored the warning here: > > > > > by p

Re: SV: problem with wicket + spring + hibernate

2010-08-11 Thread jcgarciam
> project it need it, some one can tell why? > > Thanks, > Will > > > > > From: [hidden email]<http://user/SendEmail.jtp?type=node&node=2320816&i=0> > > To: [hidden email]<http://user/SendEmail.jtp?type=node&node=2320816&i=1> >

Simple message solution Wicket-Spring combined application

2015-04-22 Thread Sandor Feher
e overhead because of two seconds refresh time I set in AjaxSelfUpdatingBehaviour. So I'm looking for a more lightweight approach. Thanks! Regards., Sandor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Simple-message-solution-Wicket-Spring-combined-application

Re: Wicket Spring boot - use spring devtools

2019-08-28 Thread Martin Grigorov
. When I change a Spring @Configuration or Hibernate mapping I just restart the application manually. On Wed, Aug 28, 2019 at 11:25 AM Per Newgro wrote: > Hello *, > > I migrate my current wicket app to spring boot version ( > https://github.com/MarcGiffing/wicket-spring-boot). >

<    1   2   3   4   >