abelsky,
I have mocked all interfaces, but still there are some instances in the code where
interfaces aren't used and those classes primarily factories extend from a common
base class that...
Type: Posts; User: Manco; Keyword(s):
abelsky,
I have mocked all interfaces, but still there are some instances in the code where
interfaces aren't used and those classes primarily factories extend from a common
base class that...
thanks for the tip, there was an interface. I originally thought it was being used directly.
this is a big body of code that I don't know much about and I am learning both spring and mocks. I am...
I am attempting to do something similar to this post, i am using JMock.
I am running into problems because my bean extends from a class that implements
BeanNameAware. This causes...
Hi,
I have been running into this same problem. After struggling for many months
with maven and eclipse and now STS I have finally discovered the beauty of
m2eclipse. When set up...
I have the following repos in my settings.xml file
<repository>
<id>com.springsource.repository.bundles.release</id>
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle...
http://www.nabble.com/How-to-use-CopyBuilder--td19931534.html
from the above link I found this sample, it appears to have fixed my problem ,
the artifactId(s) runtime and testing are key!
[
...
I am using JAXB2 in my pom.xml and it is working fine, however I wanted to add
the arguments that will include <toString(), equals() and hashCode()> methods. I cant
seem to find the right...
I was also having this problem, as it turns out this can be a bit mis-leading.
You will also get this error message if the jar file doesn't exist. So be sure to check
if you have given the correct...
Marten,
Thanks for the pointer!
I agree it is quite clear, perhaps the method name invokeInternal should have been my first clue
mea culpa
I am trying AOP for the first time. I am using Spring-WS 1.5 and Spring 2.5, I am using
SIA2 chapter on AOP as an example. I am attempting to advise my MarshallingEndpoints, but my advice does not...
Hi,
I am trying to convert your example, ParameterizedDependencyInjectionTests,
for my parameterized test, but I need to load my parameters from a Jar File.
So I would like to inject the ...
Arjen,
I am having the same problem, but I don't understand your explanation.
I am using JAXB2. The generated class from my xsd is wrapped in @XmlRootElement( (unfortunately on preview of this...
I found out the following:
Since the PreparedStatments are tied to a specific connection, when the
connection dies so do your PSs.
The way the pooling of PSs works is that when you make a...
I am trying to determine if I should set PoolPreparedStatements to True and
if so should I use MaxOpenPreparedStatements: -1 or some other value.
I have read the JavaDoc but I am looking for a...