On 2/11/08, Rob Hills <[EMAIL PROTECTED]> wrote:
>
> Hi Matt,
>
> Matt Raible wrote:
> > In 2.0.1, password encryption logic moved into the service layer.
> >
> > http://issues.appfuse.org/browse/APF-666
> >
> > Click on the FishEye link to see the changes committed to SVN.
> >
> > Maybe that has something to do with your issue? In prior versions, the
> > logic depended on a "encryptPassword" hidden field being created (by
> > JavaScript).
> >
> Thanks for the reply.  I suspect something I'm doing with my user class
> is messing with the Service layer logic, but it's a bit tricky to work
> out.  It'd be really handy to be able to trace from my code into the
> userManager.saveUser() method, but I'm having difficulty getting there.
> I'm using Eclipse, by default, is the Appfuse source available to
> Eclipse to trace through?  If not, is there anything I can put in my
> pom.xml to make that happen?  I've hunted through the site and Googled a
> bit but haven't been able to find any description of how to do this.
> It'd make a good FAQ IMHO, so I'm happy to add that to the Eclipse page
> (or the FAQ page) once I find out how to do it.


If you created your project using mvn eclipse:eclipse this should already
happen - just make sure the following is in your project pom.xml:

           <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <additionalProjectnatures>
                        <projectnature>
org.springframework.ide.eclipse.core.springnature</projectnature>
                    </additionalProjectnatures>
                    <additionalBuildcommands>
                        <buildcommand>
org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                    </additionalBuildcommands>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <wtpversion>1.5</wtpversion>
                </configuration>
            </plugin>

Mike

Cheers,
>
> Rob Hills
> Waikiki, Western Australia
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to