Search Results

3
votes
7answers
623 views

What is the best way to initialize a bean?

In spring you can initialize a bean by having the applicationContext.xml invoke a constructor, or you can set properties on the bean. What are the trade offs between the two approaches? Is it bet …
4
votes
3answers
384 views

In Java, how do I dynamically determine the type of an array?

Object o = new Long[0] System.out.println( o.getClass().isArray() ) System.out.println( o.getClass().getName() ) Class ofArray = ??? Running the first 3 lines emits; …
1
vote
3answers
328 views

java/groovy socket write timeout

I have a simple badly behaved server (written in Groovy) ServerSocket ss = new ServerSocket(8889); Socket s = ss.accept() Thread.sleep(1000000) And a client who I …
0
votes

How do I include jars in a groovy script?

You can also try out Groovy Grape. It lets you use annotations to modify the classpath. Its experimental right now, but pretty cool. See …