Search:

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

Search: Search took 0.02 seconds.

  1. hi, never mind, I fixed the problem, it is not...

    hi, never mind, I fixed the problem, it is not relate to AOP. Thanks for your help
  2. After I make the changing

    After I make the changing <aop:aspectj-autoproxy proxy-target-class="true"/>, I get the following Exception when deploying application because PublishDAO extends from HibernateDaoSupport which has no...
  3. now compile is fine, but getting run time error ...

    now compile is fine, but getting run time error

    SEVERE: Error Rendering View[/face/publish/publish.xhtml]
    javax.faces.FacesException:...
  4. After I put the absolute package path of the...

    After I put the absolute package path of the argument, it still doesn't work with the following error:
    Pointcut is malformed: error at ::0 can't find referenced pointcut publishDocument

    look...
  5. after the change I get the following error: ...

    after the change I get the following error:

    Severity and Description Path Resource Location Creation Time Id
    Pointcut is malformed: warning no match for this type name: DocumentItem...
  6. no it is not working, any more idea.

    no it is not working, any more idea.
  7. Pointcut is not well-formed: expecting 'name pattern' at character position 116

    I am using Jboss 4.2.1, I create an aspect and have the followling exception when deploy in JBoss and compiled from Eclipse:

    Pointcut is not well-formed: expecting 'name pattern' at character...
  8. Export data to excel using displaytag in spring porltet mvc enviroment

    Have anyone tried to export data to excel using displaytag in spring portlet mvc 2.0?

    All the excel data generated from displaytage's excel view class is written to the jsp view, and no popup...
  9. Replies
    2
    Views
    3,183

    you miss the form which is the command name you...

    you miss the form which is the command name you define in the form tag. you need to add object with the name form in your ModelAndView in your controller class.

    mav.add("form",object);
    return...
  10. yeah, it is my enviroment problem, all I have to...

    yeah, it is my enviroment problem, all I have to do is make sure spring.jar and jstl.jar in the same directory, before spring.jar was in my applib folder, and jstl.jar was in my webinf/lib folder.
  11. I agree, but this is not the best or elegant way...

    I agree, but this is not the best or elegant way to do it.

    can spring porlet mvc come up some thing better in their framework.
  12. how to pass data from handleActionRequestInternal() to handleRenderRequestInternal()

    I want to declare a member variable in AbstractController sub class, and plan to set the member variable value in handleActionRequestInternal(), and use it in handleRenderRequestInternal().

    Since...
  13. Replies
    1
    Views
    837

    using Resouncebundle in controller

    I want to know how to add a key from message.properties in controller's onSubmitRender method, and display it in jsp page.

    in Strut way:

    Action class:

    ActionMessages msgs = new...
  14. Replies
    0
    Views
    598

    using Resouncebundle in controller

    I want to know how to add a key from message.properties in controller's onSubmitRender method, and display it in jsp page.

    in Strut way:

    Action class:

    ActionMessages msgs = new...
  15. is this ok to declare member variabe in AbstractController sub class

    actionResponse.setRenderParameter(..) only accept string as the value, I need to set a object in the value.
  16. is this ok to declare member variabe in AbstractController sub class

    I want to know if it is ok to declare member variable in AbstractController sub class, I plan to set the member variable value in handleActionRequestInternal(), and use it in...
  17. IllegalStateException to create InternalResourceViewResolver using portlet mvc

    I have a very simple controller class and jsp page. I have a error that I have no idea what it is, and most likely originate from Spring. thanks for your help.

    I have this in my web.xml...
  18. Replies
    3
    Views
    3,737

    where is the samples/petportal

    in Chapter 16. Portlet MVC Framework, it mentions petportal samples in full Spring distribution, I downloaded spring-framework-2.0-m5, spring-framework-2.0-rc4, spring-framework-2.0, and couldn't...
  19. it is in many to one relationship: many...

    it is in many to one relationship: many DocumentContent belong to one DocumentItem.
    my java code is following:
    getHibernateTemplate().findByNamedQueryAndNamedPara("searchDocumentContents",...
  20. automitically update calls after select in hibernate

    I noticed when I pass a select hibernate query statement like this:

    from CarPart carPart when car.id in (:ids)

    it return a list of CarPart objects but hibernate also call update statements on...
Results 1 to 20 of 20