Search:

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

Page 1 of 7 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    541

    Hibernate query

    Hi,

    This isn't really a spring question but a more hibernate related question. I'm new to hibernate and i have a structure which I need to create entities out of but I'm having trouble figuring...
  2. What is thr URL you're sent to after you try to...

    What is thr URL you're sent to after you try to access a page where the access is denied?
  3. Replies
    1
    Views
    934

    Ajax...

    Ajax

    I hope I wasn't too late in replying.
  4. Replies
    2
    Views
    1,207

    The path where your jsp's are placed is incorrect...

    The path where your jsp's are placed is incorrect or the view you're construction is incorrect. I suggest you read this fine tutorial before you go any further.
  5. Replies
    13
    Views
    2,616

    Can you access the session and see if stuff you...

    Can you access the session and see if stuff you expect to be there, is there? It appears that the command object is not available in the session, which is weird because the config looks allright.
  6. Replies
    13
    Views
    2,616

    Remove this line :

    Remove this line :


    <%@ page session="false"%>
  7. Replies
    13
    Views
    2,616

    Post your jsp please.

    Post your jsp please.
  8. Replies
    13
    Views
    2,616

    You have to use the proper binding in your JSP...

    You have to use the proper binding in your JSP for spring to bind the data automatically. For example, to bind a text field type :


    <form:input path="pwd" />

    This will bind the password field...
  9. Replies
    13
    Views
    2,616

    1. You're overriding the handleRequest() method...

    1. You're overriding the handleRequest() method of AbstractController which is why your SFC will not work.

    2. How do you know your validator is called at all? I don't see any log statements.
  10. Replies
    13
    Views
    2,616

    Remove 'implements Controller'. Change...

    Remove 'implements Controller'. Change handleRequest() to showForm().
  11. The command object IS the formBackingObject. The...

    The command object IS the formBackingObject. The first time the form is submitted, the value of the command object is saved in session, then when the second time the form is displayed (after...
  12. In that case something somewhere is not marked as...

    In that case something somewhere is not marked as transient and is saved in the session.

    I'd say just ignore it, it's not a error condition really, just a warning of sorts. You'll go crazy trying...
  13. Replies
    3
    Views
    956

    Please be more clear and provide an example of...

    Please be more clear and provide an example of what you want to do.
  14. Your methods are static ...

    Your methods are static ...
  15. In your session scoped bean, mark all references...

    In your session scoped bean, mark all references to services, DAOs etc as transient. Tomcat is simply trying to save the session to disk before it shuts down.
  16. Replies
    3
    Views
    7,743

    Spring PagedListHolder is very well implemented...

    Spring PagedListHolder is very well implemented but i'd suggest you use something like displaytag for a lot more flexibility.
  17. Read this...

    Read this.
  18. Replies
    1
    Views
    568

    It's method ...

    It's method ...
  19. Replies
    2
    Views
    954

    Try :

    Try :


    <c:out value="${model.Name}" />
  20. Replies
    3
    Views
    1,397

    Expand your war file and see if...

    Expand your war file and see if message.properties is included there. Most common mistake is that you've forgotten to include it in your war when building through ant or maven.
  21. I wrote about my experiences doing something...

    I wrote about my experiences doing something simlilar here, maybe it can be of help to you.
  22. Replies
    4
    Views
    2,153

    I'm pretty sure thats the only way. Do understand...

    I'm pretty sure thats the only way. Do understand that this is not a limitation of spring but just the way it works. Form values are passed based on the name attributes and not the id attributes.
    ...
  23. What is the exception thrown?

    What is the exception thrown?
  24. Post the exact exception please.

    Post the exact exception please.
  25. Replies
    1
    Views
    999

    I just ignore the list update in the second call...

    I just ignore the list update in the second call using the following code snippet :


    Map paramMap = WebUtils.getParametersStartingWith(request, "d-");
    if (paramMap.size() == 0) {
    ...
Results 1 to 25 of 163
Page 1 of 7 1 2 3 4