Search:

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

Search: Search took 0.01 seconds.

  1. I think that this is for using relatives paths...

    I think that this is for using relatives paths instead of absolute paths.
    Remember that using of absolute paths can became difficult to maintain if your application change the location into the...
  2. Replies
    3
    Views
    1,382

    Hello. Try removing the tag:

    Hello.
    Try removing the <list> tag:

    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="mappingResources">
    ...
  3. Replies
    3
    Views
    786

    Since the method getSon receives two parameters,...

    Since the method getSon receives two parameters, you have to use <constructor-arg> for the correct instantiation:

    <bean id="someid" class="com.xxx.xxx.Son" factory-method="getSon" >
    ...
  4. Maybe you can use the util:constant element, it's...

    Maybe you can use the util:constant element, it's for accessing to static field defined in somewhere.
    Try this

    <property name=“fooList”>
    <util:constant static-field=“MyOtherClass.FOO_LIST”...
  5. Replies
    3
    Views
    2,229

    1. When do I need instantiate the container?...

    1. When do I need instantiate the container?
    When your application start. If it's a web application, you have tu use ContextLoaderListener (a servlet listener) and define it in the web.xml.
    If you...
  6. Have you already took the exam? What about the...

    Have you already took the exam?
    What about the questions? I'm now prepearring it and I want to know waht kind of questions the exan contains... do you know?
    Mock exams?

    thanks
  7. Hi. Well, I found a more pretty solution for...

    Hi. Well, I found a more pretty solution for spring ThreadPoolTaskExecutor for wait until all tasks are finshed:
    You've got to shutdown the executor after you load all the threads you've got to run....
  8. Maybe this can help you...

    Maybe this can help you http://internna.blogspot.com/2009/03/parallelism-in-spring.html.
    In these post there is a solution, but I don't really like it. Its not acoupled to Spring, because it use...
Results 1 to 8 of 8