Search:

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

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,159

    hi I found out that it is working ; ) but I...

    hi

    I found out that it is working ; )
    but I am not able to use the spring-beans in a
    constructor of a handler.

    do someone know why it is like that?
  2. Replies
    3
    Views
    1,159

    JSF Spring integration

    hello

    I wanted to ask if there is someone who already uses Spring as business object IoC container.. and JSF as web layer

    I tried to use the
    DelegatingVariableResolver as described in the...
  3. Replies
    27
    Views
    95,518

    Poll: Thanks :) ok I read the reference for Spring MVC....

    Thanks :) ok I read the reference for Spring MVC.
    So if I do not misunderstand the reference it means
    that:

    1. you can suit in some way the workflow of the DispatcherServlet
    namely when...
  4. Replies
    27
    Views
    95,518

    Poll: extensibility points in Spring MVC

    hi,

    Keith writes that Spring MVC has more extensibility points. Is there someone who could give a short sum about which extensibility points are given by Spring MVC?

    thx
    andree
  5. AbstractWizardFormController, and enctype

    hi,

    do maybe someone know if it is possible to use the
    tag <input type="file" name="file"/> inside of a JSP for the AWFC?
    In the reference docs there is an example with the <form ..> tag.
    But I...
  6. hi mdeinum :) ohhh .. I see .. instead of...

    hi mdeinum

    :) ohhh .. I see .. instead of ${status.count-1} I can use ${status.index}
    I removed the varStatus="status" so it couldn't work then .. now I see clear what you meant..

    thx
  7. hello mdeinum, I get a: ...

    hello mdeinum,

    I get a:

    java.lang.NumberFormatException: For input string: ""

    So i.e. ${status.index} is empty .. what do I need to do to
    use status.index? The <bind> tag? I thought it is...
  8. I found out that you can use a status variable in...

    I found out that you can use a status variable in c:foreach.


    <form:form commandName="commandobject">
    <core:forEach items="${encyclopedia}" var="item" varStatus="status">
    description for...
  9. how to use within tag for collections

    hello

    I would like to use a List of items on a form where a user can type data in.

    Now the problem to me is that I do not know how to do it ;).

    Ok for example when there is an encyclopedia...
  10. Replies
    9
    Views
    1,650

    hi xmaniac thank you for your answer. In fact...

    hi xmaniac

    thank you for your answer. In fact you are right :) It explains this
    matter accurately.



    It means you need to use it like that:
  11. Replies
    9
    Views
    1,650

    usage of redirect: .. forward:

    that means you can use RedirectView inside of a controller ..

    http://www.springframework.org/docs/api/org/springframework/web/servlet/view/RedirectView.html

    In a SimpleFormController you could...
  12. Replies
    1
    Views
    556

    AbstractWizardFormController

    hello

    I wonder if something like that is possible with the AbstractWizardFormController:

    The case is that someone can order pizzas. So there is one Order and in an order there can be more than...
  13. Thread: display taglibs

    by andree
    Replies
    5
    Views
    1,060

    hello karldmoore thank you for your answer. ...

    hello karldmoore

    thank you for your answer.

    I mean JSTL is fine. But I am looking for taglibs about visual components like tables, calender .. and things similar to desktop GUI libraries.
    ...
  14. Thread: display taglibs

    by andree
    Replies
    5
    Views
    1,060

    display taglibs

    hello,

    in the original docs of Spring MVC shipped with the distribution
    one can read about the taglib:



    My question is if you know, maybe, some good standard taglibs for that purpose which...
  15. hi if you want to display properties you can...

    hi

    if you want to display properties you can do it like that:


    ${simpleBean.simpleProperty}

    or objects:
  16. Replies
    3
    Views
    3,578

    error with webAppRootKey ?

    hello ... using this:


    <context-param>
    <param-name>webAppRootKey</param-name>
    <param-value>your.root</param-value>
    </context-param>


    I get the following. Thanks for any help ..
  17. see also

    see also: http://www.onthoo.com/blog/programming/2005/04/hibernate-moving-day.html
  18. side effects ..

    ok in the note you can read that this filter will not flush the Hibernate Session
    by default (same thing with OpenSessionInViewInterceptor)..so this is maybe one side effect.

    When in single...
  19. question about side effects with OpenSessionInViewFilter

    hello!

    in the API of Spring for the OpenSessionInViewFilter ..http://www.springframework.org/docs/api/org/springframework/orm/hibernate3/support/OpenSessionInViewFilter.html
    ..you can read:

    "A...
  20. and here is the JSP ..

    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <%@ include file="/WEB-INF/jsp/include.jsp" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    ...
  21. hello thank you for your answers. Yes of...

    hello

    thank you for your answers. Yes of course it is was the NullValueInNestedPathException:


    org.apache.jasper.JasperException: org.springframework.beans.NullValueInNestedPathException:...
  22. solved

    hi

    I solved this problem by implementing the method


    protected Object formBackingObject(HttpServletRequest request)
    throws Exception{..}
  23. Replies
    13
    Views
    45,462

    some questions about the sense of method formBackingObject

    hello ..

    does it mean that the method: formBackingObject(HttpServletRequest request)
    is used to instantiate an object and to return that object so that Spring MVC
    then can populate that object...
  24. command object as mapped on domain model or seperated ..and reference dependences?

    hi!

    I tried to use the model objects as command objects.

    Unfortunatelly I found a problem with it.. When I have a class 'User'
    and this class has a reference on an "Address" object .. Spring...
Results 1 to 24 of 24