Search:

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

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. STS mvc archetype ("Spring MVC Project" archetype)

    Hi,

    I cannot find the "Spring MVC Project" archetype anywhere on maven repository (I used jarvana). If I am missing something can someone please inform me where to look. I can only see archetypes...
  2. Solution

    Adding the following jackson dependancy fixed my problem:


    <dependency>
    <groupId>org.codehaus.jackson</groupId>
    <artifactId>jackson-mapper-asl</artifactId>...
  3. Should there be any worries when using the RestTemplate.postForLocation method?

    Hi to everyone,

    I started developing with Spring Social. I saw that Spring Social's FacebookTemplate only gets the most important info. Since I want to do more, I started extending it.

    I...
  4. Thanks for your replies! I am unable to check...

    Thanks for your replies! I am unable to check this because of problems with the maven repository, but I am sure it will work. I will inform you about my progress!

    Regards,
    Despot
  5. exception when invoking methods on twitterTemplate

    Hi to all,

    I am developing an example for accessing Twitter. All goes well when I do the oAuth "dance". At the end when I try to invoke the available methods on the TwitterTemplate I get:

    I am...
  6. Solved

    The answer is here.

    Regards.
  7. IllegalArgumentException Cannot convert value of type String to required type Product

    Hi to all,

    I receive the exception

    in the Errors errors object even before my DetailProductValidator starts validating.

    I don't understand why Spring does that. I don't have any input field...
  8. Replies
    3
    Views
    1,482

    One more tiny problem left! (Solved the communication)

    Hi again,

    first of all, I want to clarify why I wasn't getting any parameters (post data) when debugging. Apparently, when debugging with Eclipse the parameterMap is empty until you do a ...
  9. Hi Marten, thank you. The information that you...

    Hi Marten,

    thank you. The information that you provided me helped me in my intentions.

    For all those that want to do the same thing:



    <bean id="interceptedHandlerMapping"...
  10. Possible to provide only id of controllers in SimpleUrlHandlerMapping?

    Hi,

    I was wondering if its possible to only provide ids of the controllers that I need to be intercepted. As I saw here: SimpleUrlHandlerMapping, I can only use the urlMap or mappings properties. ...
  11. Replies
    3
    Views
    1,482

    It is not a trivial case

    Thank you Enrico for replying!

    The tutorial that you sent me is for trivial cases. I have already done this without the annotations. Using annotations is only a preference. We agree on this,...
  12. Replies
    3
    Views
    1,482

    Post data not received

    Hi,

    I am submitting a HTML form:


    <form method="post" action="signIn2.htm">
    <input name="email" type="text" maxlength="255" id="emailId"/>
    <input name="pass" type="password"...
  13. Solved the problem

    Thank you rwinch and pmularien for replying!

    Before opening this thread, I tried several times to solve this problem through namespace configuration. Unfortunately, I was stuck at having to...
  14. Configuration for applying https to certain pages

    Hi to you all,

    I need to configure Spring Security 2.0.5 to demand certain pages to go through https. I don't need any other functionality. I tried several times to configure but I am struggling...
  15. Navigating to an AbstractWizardFormController by invoking any page but the first one

    Hi to all,

    I am interested if there is any way that I can navigate to an AbstractWizardFormController and invoke (for example) the third page instead of the first one. Important - we are accessing...
  16. Replies
    13
    Views
    28,599

    Found another solution

    Hi to all,

    Look at the last post of this thread http://forum.springsource.org/archive/index.php/t-21140.html.
    We need to set the JVM arguments:...
  17. Can anyone please comment on anything? Perhaps,...

    Can anyone please comment on anything?
    Perhaps, some of you moderators knows something!? Even an "I haven't encountered this kind of problem..." would be cool.
    despot
  18. Replies
    2
    Views
    1,150

    Hi Rajesh Babu, typically, you should create a...

    Hi Rajesh Babu,

    typically, you should create a new backing object in the formBackingObject method of the SimpleFormController. This will allow the user to see an empty page, every time (s)he comes...
  19. Navigating an AbstractWizardFormController with an anchor tag

    Hi to all,

    How can I navigate to another page using an anchor tag?
    I can very easily navigate to the second page of the AbstractWizardFormController with the following code:


    <input...
  20. info on payment process and payment processors

    Hi,

    I want to read about implementing a payment process and the use of paymentProcessors. The only thing I found was the part in the reference guide and Spring in Action book about transactions...
  21. Solved

    <form:form method="post" commandName="xBackingObject">
    <c:forEach var="y" items="${xBackingObject.items}" varStatus="itemsRow">
    <img src="${imagesPath}/${y.z.z2}"/>
    <c:out value="${y.z.z2}"/>...
  22. Solved

    Hi,

    After looking through the source files (AbstractFormController and SimpleFormController) and looking at the debug stack trace I found out that there were errors so it wasn't passing the first...
  23. not getting onFormChange after returning true in isFormChangeRequest

    Hi,

    I have some trouble understanding why I am not reaching onFormChange when I get true in my isFormChangeRequest. I read the flow:


    In my jsp I have:


    <input type="submit" align="right"...
  24. Solved 1-st question

    Hi again,

    I solved the first question. I am posting the code that works for me:



    ...
    <c:forEach var="y" items="${items}" varStatus="itemsRow">
    <img src="${imagesPath}/${y.z.z2}"/>...
  25. form and forEach tag conflicts in rendering values

    Hi,

    (Questions are below)

    I hava an backing object which I want to use in a jsp:


    public class XBackingObject {

    private Map<String, Y> itemsMap = new HashMap<String, Y>();
Results 1 to 25 of 28
Page 1 of 2 1 2