Re: [Stripes-users] Newbie

2015-12-22 Thread VANKEISBELCK Remi
Hi, You are right that samples in the distribution should show how to lake the best out of the fwk. Unfortunately, it's not always true in our case... The Calc example for instance is crappy, and we should rewrite it. It doesn't even follow the "pre-action" pattern and allows access to JSPs.

Re: [Stripes-users] Newbie

2015-12-21 Thread Richard P. Osseweyer
I started using Stripes in 2008 after reading Daoud's book and I still use it for reference. It's a joy to read and in almost any case it answers my Stripes related questions. There may be some outdated information but that is really minor compared to what you'll learn from it. tika

Re: [Stripes-users] Newbie

2015-12-21 Thread tika
> > > tika, > You've already gotten some great answers from other folks. I'll only add that you should also check out the Stripes example applications.  They are a great way to see easy to understand examples of real world use cases.  Welcome to Stripes! > > -- Rick > > > On Mon, Dec 21, 2015

Re: [Stripes-users] Newbie

2015-12-21 Thread Rick Grashel
tika, You've already gotten some great answers from other folks. I'll only add that you should also check out the Stripes example applications. They are a great way to see easy to understand examples of real world use cases. Welcome to Stripes! -- Rick On Mon, Dec 21, 2015 at 9:02 AM, tika

Re: [Stripes-users] Newbie

2015-12-21 Thread Arnold
Have you had a look at this book: http://www.amazon.com/Stripes-Example-Brent-Watson/dp/1484209818/ref=sr_1_1?s=books=UTF8=1450716387=1-1=stripes+by+example Regards, Arnold Graaff Skype ID: arnoldgr Tel: +27 83 700 2858 On 21 December 2015 at 17:02, tika wrote: > Hi

Re: [Stripes-users] Newbie

2015-12-21 Thread Joaquin Valdez
I have that one too..Its condensed and good as well. Joaquin Valdez joaquinfval...@gmail.com > On Dec 21, 2015, at 9:49 AM, Arnold wrote: > > Have you had a look at this book: > >

[Stripes-users] Newbie

2015-12-21 Thread tika
Hi all. I haven't been programming web apps for a long time and now I want to rework one of my apps from Struts 1 to something else. It seems to me that, compared to other web frameworks, Stripes seems to be appropriate for my needs and flavour. My question is regarding the book about Stripes. It

Re: [Stripes-users] Newbie

2015-12-21 Thread Joaquin Valdez
I find the book to be relevant and still a good resource from time to time. Joaquin Valdez joaquinfval...@gmail.com > On Dec 21, 2015, at 8:02 AM, tika wrote: > > Hi all. > > I haven't been programming web apps for a long time and now I want to rework > one of my

[Stripes-users] Newbie Question

2013-02-19 Thread David Gilbert
I have a newbie question, I'm hoping someone can assist me in. I'm coming from learning Ruby last year, so I'm pretty new to Java, Stripes, Hibernate, etc. I have read up on each one individually. Forgive me if this is not the proper way. I've just had a lot of success in getting questions

Re: [Stripes-users] Newbie Email Verification Questions

2009-03-30 Thread AK
Laura Ferguson allend...@... writes: Note: I am a desktop application developer trying to learn web development -- so any help with these questions would be really appreciated. Many thanks!! I am working on email verification and I was trying to determine the best approach to the following

Re: [Stripes-users] Newbie Email Verification Questions

2009-03-30 Thread azizi yazit
Hi Laura, If u want to use any value from other jsp, I have two opinion.. first if u using ForwardResolution to other jsp, it will automatically give the value in stripes tags that call it. Second, why dont u use Session..stored the value to session. Fyi, I am newbie too. However in my

[Stripes-users] Newbie Email Verification Questions

2009-03-27 Thread Laura Ferguson
Note: I am a desktop application developer trying to learn web development -- so any help with these questions would be really appreciated. Many thanks!! I am working on email verification and I was trying to determine the best approach to the following problems, using stripes, jsp's,

Re: [Stripes-users] Newbie question: Jasper exception - annotation issue

2008-07-25 Thread Levi Hoogenberg
You mention that it took some time to get the deployer JARs right - I'm not exactly sure what you mean by that, but I do think that that's the source of your problems. If you download a Tomcat ZIP from tomcat.apache.org, extract it, and deploy the quickstart application that comes with Stripes (by

Re: [Stripes-users] Newbie question: Jasper exception - annotation issue

2008-07-25 Thread Peter Janes
Levi Hoogenberg [EMAIL PROTECTED] writes: Many thanks to Levi (and Ben) for the quick feedback! You mention that it took some time to get the deployer JARs right - I'm not exactly sure what you mean by that, but I do think that that's the source of your problems. If you download a Tomcat

[Stripes-users] Newbie question: Jasper exception - annotation issue

2008-07-24 Thread Peter Janes
Hello everybody, I am new to Stripes, finding it through the book Harnessing Hibernate (http://oreilly.com/catalog/9780596517724/). From what I have seen so far, Stripes is exactly what I am looking for (quickly completing my application). I already got the Stripes example war file deployed and

Re: [Stripes-users] Newbie question: Jasper exception - annotation issue

2008-07-24 Thread Ben Gunter
According to the Javadocs, DefaultAnnotationProcessor implements AnnotationProcessor so a cast should be OK unless you have the two classes loaded from different class loaders. You likely have one or more jars in the wrong place, which is causing them to be loaded by the wrong class loader. -Ben