Search:

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

Page 1 of 5 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    6
    Views
    1,328

    you don't have a view resolver in your beans ...

    you don't have a view resolver in your beans


    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property...
  2. Replies
    5
    Views
    1,410

    We got it working with "services" folder in...

    We got it working with "services" folder in META-INF folder of the webapp.
    This services folder has the only file named "org.apache.commons.logging.LogFactory"
    And the contents of this file is the...
  3. Replies
    1
    Views
    2,077

    Yes, use the more recent one, from Apache. Spring...

    Yes, use the more recent one, from Apache. Spring bundles with the old one.
  4. For Integer binding use Integer.class For int...

    For Integer binding use Integer.class
    For int binding use Integer.TYPE
  5. Replies
    2
    Views
    826

    We've copied .tld files to a separate archive...

    We've copied .tld files to a separate archive (all in the archive root), put it in the web-inf/lib, and everything works fine, even autocompletion and code suggestions
  6. Replies
    6
    Views
    1,148

    sorry, then no suggestions :( if you had...

    sorry, then no suggestions :(
    if you had urlHandler misconfiguration you would get 404 error after redirect, but you got nothing ...
  7. Replies
    6
    Views
    1,371

    Do you think it will hurt your app to change...

    Do you think it will hurt your app to change method="post" to method="get"?
    If you insist to use POST, your saved-searches.vse should have a redirect view.

    Something like:
    1) POST to...
  8. Replies
    6
    Views
    1,148

    What are yor security constraints and login...

    What are yor security constraints and login config in web.xml?
  9. Replies
    1
    Views
    873

    The best way for a small app is to use the...

    The best way for a small app is to use the standard (Servlet spec) request.isUserInRole method.
    If the application is of a more invovled type, consider Acegi
  10. Replies
    6
    Views
    1,371

    Can you provide the details of search form...

    Can you provide the details of search form element from your page? Is it done via DWR, or Spring?
  11. Replies
    6
    Views
    1,371

    Try to search "Redirect after POST" pattern in...

    Try to search "Redirect after POST" pattern in google.
    Or, make your page transitions (including form submits) to be GET requests.
    I think dwr framework has nothing to do with your problem, because...
  12. Replies
    2
    Views
    1,244

    jsp:

    jsp:


    <%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>

    <spring:message code="your.key"/>


    spring-config.xml:
  13. The FORM tag on your page doesn't have 'action'...

    The FORM tag on your page doesn't have 'action' attribute, so it will submit to the current page's URL. And if this url already has some parameters, you can get 2 parameters with the same name
  14. Replies
    6
    Views
    1,506

    the property name is "encoding", not "enctype"...

    the property name is "encoding", not "enctype" while using javascript. Though, it is "enctype" if you hardcode it in html form element
  15. Replies
    6
    Views
    1,506

    Have you read the response on the first of your...

    Have you read the response on the first of your posts on that subject?
  16. Replies
    1
    Views
    1,029

    Have you set corrsponding enctype attribute value...

    Have you set corrsponding enctype attribute value in the form?


    enctype="multipart/form-data"
  17. We are loading such reference data in application...

    We are loading such reference data in application scoped bean. In this case all our dictionaries are loaded only once at application startup. The dictionaries are saved to application scope, and the...
  18. you can call your second controller from the...

    you can call your second controller from the first controller directly. Inject the second controller in the first controller and call handleRequest (or some other method from the Controller...
  19. Replies
    1
    Views
    803

    sure, you should define you logging rules in your...

    sure, you should define you logging rules in your logging engine properties. Usually, log4j.properties
  20. Does you webapp has log4j.jar in WEB-INF\lib?

    Does you webapp has log4j.jar in WEB-INF\lib?
  21. Replies
    10
    Views
    1,969

    unfortunately you can't pass arguments as...

    unfortunately you can't pass arguments as "${error.arguments}". I was diggin in Spring source code once, and found, that they accept a list of comma separated arguments in message tag, but not a...
  22. Replies
    19
    Views
    9,415

    Also

    Also


    <c:forEach items="{$divisions}" var="sal">

    {$divisions} - what the h...? :)
  23. Replies
    19
    Views
    9,415

    1) usually drop downs contents get filled in...

    1) usually drop downs contents get filled in referenceData() method
    List fruits = new ArrayList();
    fruits.add("Apple");
    fruits.add("Orange");
    request.setAttribute("fruits", fruits);

    2) Your...
  24. Maybe it is not what you wanted, but if you know...

    Maybe it is not what you wanted, but if you know the second lists's items for all possible first list selections, you can use this javascript:
    http://www.mattkruse.com/javascript/dynamicoptionlist/...
  25. Replies
    3
    Views
    796

    Unfortunately, the best place to find info about...

    Unfortunately, the best place to find info about Sitemesh is theirs forum (http://forums.opensymphony.com/forum.jspa?forumID=3)
    Our current approach is described (briefly) here:...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4