Search:

Type: Posts; User: woodsd; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Hi Sri, I think it's mostly just a copy/paste...

    Hi Sri,

    I think it's mostly just a copy/paste of Spring code but here it is



    /**
    * Merges the configured JRExporterParameters with any specified in the supplied model data.
    *...
  2. Replies
    1
    Views
    1,666

    Someone beat me to it :). See SPR-6871

    Someone beat me to it :). See SPR-6871
  3. Replies
    1
    Views
    1,666

    Spring 3 form tags binding to items in a list

    Hi all,

    I just upgraded to Spring 3 and have run into a problem with binding form elements to items in a list. In Spring 2.5.x these items would be given a name with a '[0]' in the path to...
  4. Upgrading to Spring 3.0.1 fixed this issue.

    Upgrading to Spring 3.0.1 fixed this issue.
  5. Spring3 ServletRequestDataBinder autoGrowing problem

    Hi all,

    I recently upgraded to Spring 3 and have run into a problem where the ServletRequestDataBinder is now trying to auto grow a collection in my command object even though...
  6. For anyone else interested, I'm currently...

    For anyone else interested,

    I'm currently getting around this with the below code.



    /**
    * Perform rendering for a single Jasper Reports exporter, that is,
    * for a pre-defined...
  7. Spring 3 JasperReports exporter parameter changes

    Hello all,

    I'm working on upgrading to Spring 3 and am running into a problem when passing exporter parameters as part of the model.

    We export all of our reports as Excel reports and use the...
  8. I ended up declaring it on its own and then using...

    I ended up declaring it on its own and then using the 'ref' attribute.


    <security:authentication-provider user-service-ref="userDetailsService">
    <security:password-encoder...
  9. Replies
    1
    Views
    596

    The SecurityContextHolder class provides static...

    The SecurityContextHolder class provides static access to the current Authentication object.
    ...
  10. Replies
    2
    Views
    817

    You can also listen for the...

    You can also listen for the AuthenticationSuccessEvent.
    ...
  11. Replies
    3
    Views
    875

    You might also want to investigate the...

    You might also want to investigate the AuthenticationSuccessEvent. You can listen for this event and then make a call to your dao to update the last_login with the timestamp from the event.
    ...
  12. Replies
    9
    Views
    7,361

    I've had some luck with using the maven plugin...

    I've had some luck with using the maven plugin for compile time weaving. I am struggling trying to get it to inject dependencies into JPA Entity Listeners but it does successfully inject my JPA...
  13. Replies
    5
    Views
    3,407

    I hope you've already figured this out but you...

    I hope you've already figured this out but you should reference the documentation for the version of Spring that you are using. In Spring 2.5 they moved spring-configured into the 'context'...
  14. Replies
    7
    Views
    24,276

    I have never tried it but maybe this will work. ...

    I have never tried it but maybe this will work.



    @ContextConfiguration(locations = "classpath:/META-INF/ldap-config.xml")


    Dustin
  15. Replies
    7
    Views
    24,276

    Hi Lezsek, Try removing the '*' from your...

    Hi Lezsek,

    Try removing the '*' from your location.

    From


    @ContextConfiguration(locations = "classpath*:ldap-config.xml")

    to
  16. Replies
    1
    Views
    713

    jerrytian, See if either the...

    jerrytian,

    See if either the <util:property-path/> tag or the org.springframework.beans.factory.config.PropertyPathFactoryBean class works for you. More info is found in the Appendix of the...
  17. Thanks Iwein for the timely response. You've...

    Thanks Iwein for the timely response. You've given me a few more ideas on how to proceed.



    Since I can guarantee that the file will have all line items for each order I could sort the file...
  18. Aggregator and CompletionStrategy for unknown line item count

    Hello all,

    I'm just getting started looking into Spring Integration and am looking for some suggestions on where to start with the following use case.

    I receive files with orders and line items...
  19. Thread: Hyperlink!

    by woodsd
    Replies
    1
    Views
    671

    Hello eknock, I think you are missing an html...

    Hello eknock,

    I think you are missing an html form element to submit. Also, and I've been bitten by this recently, you will probably want to submit the form by name and not just the first in the...
  20. Replies
    2
    Views
    826

    Hello, I'm new to JPA but I don't think...

    Hello,

    I'm new to JPA but I don't think Hibernate supports mixing annotation placement. Try putting your @GeneratedValue(...) annotation on the field instead of the getter.

    Dustin
  21. Replies
    3
    Views
    2,885

    Hello, I've had the same questions and this...

    Hello,

    I've had the same questions and this thread answered it for me.

    http://forum.springframework.org/showthread.php?t=56954

    Dustin
  22. Works great. Thanks Marten.

    Works great. Thanks Marten.
  23. Replies
    6
    Views
    1,079

    Hello Nathan, I'm fairly new to JPA but have...

    Hello Nathan,

    I'm fairly new to JPA but have you tried setting the 'cascade' property on your @OneToMany annotation?

    I've been using the link below for a reference to the JPA annotations but I...
  24. Spring MVC + Webflow/Faces mixed application and 'currentUser'

    Hello all,

    I have an application that consists of both spring mvc controllers and webflow. Both are using the same facelets based layout. When part of a flow I have access to the 'currentUser'...
  25. Replies
    3
    Views
    1,000

    Thanks for the reply Keith. I think I didn't...

    Thanks for the reply Keith.

    I think I didn't explain my question very well. I am looking to use the same flow definition with multiple formObjectClasses.

    In the phonebook sample application...
Results 1 to 25 of 26
Page 1 of 2 1 2