OK.
Thanks for the answer.
Type: Posts; User: stephane599; Keyword(s):
OK.
Thanks for the answer.
Hello,
I would like to use Spring to build my business backend but I have to use EJB to access it.
So I used the SpringBeanAutowiringInterceptor interceptor to create my application context...
Up please...
Hello,
I have a problem with the refresh-home-on-connect-failure attribute. My front end use an remote ejb which I declare like this:
<jee:remote-slsb id="contingentService"...
Hello,
I'm using Spring to create my EJB proxies and Web Services portType. I put some variables parameters such as jndi, endpoints url,etc.. in a environnement.properties file which is read with...
Thanks for this answer.
At first glance, it seems that both framework can achieve depency injection. I'll give a try to both.
But I ask myself why it (DI) isn't included in...
Hello,
I'm new in Android development and I would like to continue to use DI in my projects. (Create my application context in the onCreate method)
I think spring-android doesn't provide DI...
In found a (not perfect) solution :
I create a third-part class to launch my tests :
public void testRunAllTestCases() throws Exception {
ApplicationContext context = new...
In fact, wat I'm try to do is to inject a mock object inside my StrutsActionClass.
I found this article :
http://www.javaworld.com/javaworld/jw-11-2006/jw-1109-test.html?page=1
and tried to...
I think there is a misunderstanding.
What I want is not to advise "classUnderTest " ( that did I already ).
I want to advise the testClass. To do some action before the execution of all test*...
The problem is that my testClass must Extends MockStrutsTestCase ==> I cannot extend it with AbstractJUnit4SpringContextTests
If I understand well, I must do a
...
Hello,
thanks for helping me !
Here is my testApplicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<p:beans xmlns:p="http://www.springframework.org/schema/beans"...
Hello,
I'm new to Spring and I would like to use this framework to add aspects to my Junits test methods.
For exemple, add logging before and after each test method ( this is just an exemple,...