[appfuse-user] [newbie] - error

2008-09-19 Thread cesto
Hi, I'm following the hibernate persistence tutorial but when I give the command *mvn test-compile *I get an error. What does it mean? Regards LuKe Here the error: ^^ [INFO] Scanning for projects... [INFO] --

Re: [appfuse-user] Using annotations for web security

2008-09-19 Thread Michael Duergner
Well that's a pretty old approach and that's for Method Level Security. Using Java > 5.0 you can do this using either Springs @Secured or JSR 250 @RolesAllowed annotations. What I'd like to do is using annotations for Web Level Security, i.e. use it together with Springs @Controller and @RequestMap

Re: [appfuse-user] Using annotations for web security

2008-09-19 Thread Martin Homik
According to "Spring in Action" (p. 303) you can use annotations such as:: /** * @@org.acegisecurity.SecurityConfig("ROLE_ADMIN") */ public void doSomethingSecure() { // } Note, acegisecurity is springsecurity today. It might not be supported out of the box. Then, you need to 1. add a

Re: [appfuse-user] Quickstart instructions

2008-09-19 Thread Matt Raible
Try "mvn -U" first. On Sep 19, 2008, at 12:01 AM, "Ben Gill" <[EMAIL PROTECTED]> wrote: Hi, Are the quickstart instructions out of date? I tried to run: Struts 2 Basic mvn archetype:create - DarchetypeGroupId=org.appfuse.archetypes - DarchetypeArtifactId=appfuse-basic-struts -DremoteRe

Re: [appfuse-user] Using annotations for web security

2008-09-19 Thread Michael Duergner
Do you think it's worth trying from your professional point of view? I think it should be a patch for spring security if it's not possible out-of-the box as far as I can say by now. On Fri, Sep 19, 2008 at 8:00 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > I believe it is possible, but I've never

Re: [appfuse-user] Connection pool fails

2008-09-19 Thread Peter Schneider-Manzell
I would check to transaction settings, as the DB gets slower and slower when doing long running transactions (due to undo logs getting bigger and bigger) As far as I experienced, it's not the best idea to import a lot of data in 1 transaction. Try to devide the import in smaller steps (e.g. 1-1000