Search:

Type: Posts; User: Andrei Stefan; Keyword(s):

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Have you tried some simple tests, to eliminate...

    Have you tried some simple tests, to eliminate some variables?
    1. deploy the exact same war you deployed in Tomcat to Weblogic
    2. if you have no dependencies on components inside the ear, take out...
  2. I believe you can use the same (not so elegant)...

    I believe you can use the same (not so elegant) workaround I suggested here.
  3. Watch for the property name, the rule follows the...

    Watch for the property name, the rule follows the naming of the "set*" method:


    <bean id="parentA" class="ParentA" abstract="true">
    <property name="testService" ref="employeeService" />...
  4. Replies
    5
    Views
    725

    Try google...

    Try google before asking! The first result looks like a solution.
  5. As the error says, you have no bean named...

    As the error says, you have no bean named "Transit" in your app context, or, at least, you don't in the xml you posted.
  6. So, you want exactly four instances of your...

    So, you want exactly four instances of your ClassA @Service class and each instance to have a certain implementation of that interface injected? Using a single class definition for your ClassA, I...
  7. dr_pompeii, have a look, for example, at...

    dr_pompeii, have a look, for example, at org.springframework.jdbc-3.0.7.RELEASE.jar\META-INF\spring.schemas for the definition of spring-jdbc.xsd. This is valid not only for spring-jdbc, but for all...
  8. Replies
    7
    Views
    493

    You don't need those lines of code.

    You don't need those lines of code.
  9. spring-jdbc.xsd defaults to the latest...

    spring-jdbc.xsd defaults to the latest spring-jdbc xsd in that jar file. Theoretically, it shouldn't need a version.
  10. https://jira.springsource.org/browse/SPR-9521

    https://jira.springsource.org/browse/SPR-9521
  11. Here's an workaround, but is not elegant: ...

    Here's an workaround, but is not elegant:


    <bean id="exampleTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
    <property name="jobDetail" ref="jobDetail" />...
  12. If you put an order between Before and After then...

    If you put an order between Before and After then you simply ignore the very meaning and purpose of those advices, I already explained this in my previous reply. What you are looking for here is an...
  13. There are two different things here: 1. If you...

    There are two different things here:

    1. If you test the same configuration but taking out the @Configuration way of defining the beans (using XML configuration, for example), both @After aspects...
  14. Sorry for replying so late to this thread, but...

    Sorry for replying so late to this thread, but I'm not sure I follow. What would you expect your sample to do in the case "throw new RuntimeException" is uncommented?
  15. http://forum.springsource.org/showthread.php?12658...

    http://forum.springsource.org/showthread.php?126584-HTTP-403-on-Schemas
  16. Replies
    30
    Views
    3,582

    The problem has been fixed. Still, I want to...

    The problem has been fixed.

    Still, I want to point out that this issues shouldn't have disturbed a properly built application. This kind of issue should raise some eyebrows when it happens in a...
  17. The sticky attribute has been added in Spring DM...

    The sticky attribute has been added in Spring DM 2.x. dm Server 1.x uses Spring DM 1.x.
  18. Spring DM dynamic proxies

    The problem is that when you are specifying a ranking for a service you are, somewhat, changing the importance of exported services in an OSGi environment.

    Let's consider your sample. In...
  19. I have performed a simple test - take, for...

    I have performed a simple test - take, for example, formtags sample application (you can find it here) - go to /dist folder, take the par file and unzip it, start a clean instance of dm Server 1.0.1...
  20. Replies
    11
    Views
    3,376

    Just as curiosity - have you tried any of the...

    Just as curiosity - have you tried any of the examples in the reference documentation related to auto-wiring ? You expect someone else to try it for you and someone else to be the "experimenter".

    ...
  21. How did you defined the transactional behavior...

    How did you defined the transactional behavior and how do you know that method is not getting called ?
  22. There's very possible that this message comes...

    There's very possible that this message comes from the context trying to wire a dataSource somewhere else. Since you clearly specified that a certain LocalContainerEntityManagerFactoryBean is to use...
  23. Replies
    5
    Views
    1,459

    None of the methods in your controller gets...

    None of the methods in your controller gets intercepted ?
    http://forum.springframework.org/showthread.php?t=59506
  24. I think this has to do with the way CGLIB...

    I think this has to do with the way CGLIB works... creating a new class by extending the proxied one.

    Another way of getting the initial class:


    import java.lang.reflect.Method;
    import...
  25. http://jira.springframework.org/browse/SWF-749

    http://jira.springframework.org/browse/SWF-749
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4