Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    6,239

    Can you change:

    Can you change:


    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping"/>
    <bean...
  2. Replies
    12
    Views
    2,096

    Hi, spock Can you, please, post code that get...

    Hi, spock
    Can you, please, post code that get reference on sqlLoader bean from application context with casting? Can you, also, provide, please, stack trace?
  3. Replies
    5
    Views
    1,435

    For breadcrumbs back link you have provide...

    For breadcrumbs back link you have provide _flowExecutionKey from previous response. In this case SWF controller will get old flowExecutionKey and re-store ModelAndView instance based on this key
  4. Replies
    5
    Views
    2,723

    Dave means that you have create...

    Dave means that you have create ApplicationContext instance, not XmlBeanFactory instance. BeanFactoryPostProcessors are called by default just in during ApplicationContext initialization process, not...
  5. Replies
    5
    Views
    839

    How about: UserServiceImpl userService =...

    How about:


    UserServiceImpl userService = (UserServiceImpl) ((Advised)context.getBean("userService")).getTargetSource().getTarget();
  6. Replies
    2
    Views
    1,085

    See BindingResult interface. You can get Errors...

    See BindingResult interface.
    You can get Errors instance like this:


    Errors errors = (Errors)model.getObject( BindingResult.MODEL_KEY_PREFIX + <your object name> );
  7. Replies
    9
    Views
    2,046

    If you use continuation repository type all your...

    If you use continuation repository type all your objects from flash, flow and conversation scope have to implement java.io.Serializable interface (or you have to override serialization logic for...
  8. You are welcome :)

    You are welcome :)
  9. Replies
    9
    Views
    2,046

    Change on...

    Change


    <method-result name="results"/>

    on


    <method-result name="results" scope="flash"/>
  10. UserDTO and BusinessEntity class configurations...

    UserDTO and BusinessEntity class configurations are not valid. They haven't id tag
  11. Can you provide whole hbm.xml? I see at least one...

    Can you provide whole hbm.xml? I see at least one problem in provided xml:


    <property name="uniqueCode"column="UniqueCode" />

    (There are no space between " and column)
  12. Replies
    9
    Views
    2,046

    I think I see where is your problem. Can you,...

    I think I see where is your problem. Can you, please, change


    <render-actions>
    <bean-action bean="custommod" method="customModLists">
    <method-arguments>
    <argument...
  13. Replies
    9
    Views
    2,046

    Am I right that when you change method signature...

    Am I right that when you change method signature on:

    public List customModLists(ParameterMap requestParameters) throws DataAccessException

    code

    ...
  14. Replies
    12
    Views
    2,586

    Can you, please, provide 3-4 top lines from stack...

    Can you, please, provide 3-4 top lines from stack trace? And which SWF version do you use?
  15. You can extend FlowPhaseListener class and...

    You can extend FlowPhaseListener class and override beforePhase method that catch such exception and change request flow.
  16. yes. Do you have any problems with this?

    yes. Do you have any problems with this?
  17. Can you make this change: [code]

    Can you make this change:
    [code]
    <many-to-one name="users" class="org.openiam.idm.srvc.user.dto.User" fetch="select" inverse="true">
    ...
    [code]
    and re-test it? Can you also provide User and...
  18. Replies
    2
    Views
    776

    For what you have introduced constructor with...

    For what you have introduced constructor with TransationProxyFactoryBean type, not IUserService?


    <ref bean="UserDao"/>

    will be resolved into instance that TransationProxyFactoryBean...
  19. View Post

    <end-state id="goToOverview" view="flowRedirect: overviewService-flow?overviewFlow=true&amp;serviceId=${flowScope.servi ceBackingBean.serviceId}"/>
  20. Replies
    8
    Views
    1,132

    Can you introduce your own MyMockParameterMap...

    Can you introduce your own MyMockParameterMap class that extends MockParameterMap class and has additional method:


    public MockParameterMap put(String parameterName, Object parameterValue) {...
  21. Replies
    18
    Views
    2,177

    What do you mean under dataSource? You can call...

    What do you mean under dataSource? You can call getDataSource() method or repeat the same magic with "&dataSource" bean. But anyway, can you clarify what do you mean under:



    Bean instance? Url?...
  22. Replies
    8
    Views
    1,132

    Can you try: ...

    Can you try:


    mockExContext.getMockRequestParameterMap().put( "data.content", new MockMultipartFile.java( "someFile", fileContent );


    And can you also provide initBinder method implementation?
  23. Change JstlView v = new JstlView();...

    Change


    JstlView v = new JstlView();
    v.setUrl("/WEB-INF/vues/" + arg0 + ".jsp");
    return v;

    on
  24. Replies
    5
    Views
    3,844

    Poll: Have? Why??? JSF is JBoss specification?

    Have? Why??? JSF is JBoss specification?
  25. Replies
    18
    Views
    2,177

    It's not java, it's Spring. When you call getBean...

    It's not java, it's Spring. When you call getBean method and configured FactoryBean for this bean name you will get instance(s) that this FactoryBean produce, not FactoryBean itself. So, when you...
Results 1 to 25 of 64
Page 1 of 3 1 2 3