Search Results

0
votes
4answers
849 views

Starting external process during integration testing in maven

I want completely automated integration testing for a Maven project. The integration tests require that an external (platform-dependent) program is started before running. Ideally, the external p …
2
votes

OSGi Testing

Spring Dynamic Modules has excellent support for testing OSGi bundles. …
1
vote

Map of Enums and dependency injection in Spring 2.5

1) Define Maintainer class as a Spring bean. Standard Spring syntax applies: <bean id="maintainer" class="com.example.Maintainer"/> …
1
vote

Template Engines for Spring Framework

Try Spring Modules, which has support for web template engines like Freemarker, Groovy, Velocity, WebMacro and XSLT. …
1
vote

Why does the Eclipse code formatter break </a> in a Javadoc @see tag?

This could be a bug in Eclipse 3.4. I'm using 3.3 (M20080221-1800), and do not observe this behavior. …
2
votes

Dealing with command line arguments and Spring

Two possibilities I can think of. 1) Set a static reference. (A static variable, although typically frowned upon, is OK in this case, because there can only be 1 command line invocation). …
0
votes

How can I discover resources in a Java jar with a wildcard name?

A Spring ApplicationContext can do this trivially: ApplicationContext context = new ClassPathXmlApplicationContext("applicationConext.xml"); Resource[] xmlResources = …
0
votes

Tree (directed acyclic graph) implementation

If you're looking for additional graph capabilities, JDigraph's …
3
votes

Is there a JUnit TestRunner for running groups of tests?

Check out Spring's SpringJUnit4ClassRunner. …
3
votes

Refactoring Nicely with Version Control

Eclipse can export refactoring history (see …
10
votes

Make your collections thread-safe?

For Java, you should leave unsynchronized for speed. Consumer of the collection can wrap in a …
1
vote

Spring: Obtaining ResourceBundle based on MessageSource

MessageSourceResourceBundle sounds like wha …
1
vote

Is there a destructor for Java?

No. Object#finalize is the closest you can get. However, when (and if) is is cal …
-1
votes

Suggestions for a Java-based templating engine?

Another alternative: Groovy Templates. This allows you to use arbitrary Groovy code (very Java-like) within the templates. …
1
vote

jmock mocking a static method

See related question How to mock with static methods. …

1 2 next
15 30 50 per page