Thorbjørn Ravn Andersen

6,420
Reputation
789 views

Registered User

Name Thorbjørn Ravn Andersen
Member for 10 months
Seen 53 mins ago
Website
Location Denmark
Age

Java software developer against legacy Cobol code. MUCH more fun than it sounds :)

2009-10-23: Was awarded the Java badge with the lowest reputation of them all (is that good or bad?)

CV url

1h
comment Java: Easiest way to merge a release into one jar-file
The scriptability of one-jar with ant makes it usable in continuous build systems.
1h
comment Java: Easiest way to merge a release into one jar-file
Could you check if the ant scripts generated are usable? There was an issue earlier with absolute filepaths instead of relative.
1h
answered Grouping Jar’s Under lib
2h
comment Getting all Classes from a Package
@balusc, but the /correct/ answer is hard.
14h
comment Connection Pooling - How much of an overhead is it?
Don't reinvent the wheel. Use a good pool implementation instead - you will need it some day (oh, stale connections hang? etc.)
15h
comment Object Pooling
Pool expensive objects only (like database connections and such). The definition of "expensive" strongly depends on your requirements.
22h
comment What advantages have a commercial Java profiler over the free ones, e.g. the one in Netbeans?
Note: The jvisualvm profiler is the Netbeans profiler in a stand-alone form.
23h
awarded  Popular Question
1d
answered Incremental deployment of java web applications
1d
comment Should JUnit tests be javadocced?
I'd much rather see an explanatory string in each assertFoo statement.
1d
comment Using a returned string to call a method?
This code is fragile and cannot be easily refactored (e.g. if you change the name of e.g. otherMethod()).
1d
comment Complete list of available Java System Properties and Known Values
If you stuff the system properties in a hashtree before iterating, you get a sorted output.
2d
comment Registering on long GC time events in Java
This is JVM specific. Which JVM do you use?
2d
comment signed java applet restrictions?
Silverbandit, you would be astonished if you knew what people think is obvious.
Nov
24
comment Is it ever reasonable to nest Java inner classes more than one level deep?
Please note, I do not consider anonymous classes in this. They are a necessary pain if you need "easy" access to outside variables. I would however strongly consider an anonymous class inside another to be a code smell.
Nov
24
revised Java custom logger: logging standards or/and best practices
deleted 1 characters in body
Nov
23
comment How many times can classes be nested within a class?
The limit may be deeper when the classes are in a jar file.
Nov
23
comment How many times can classes be nested within a class?
+1 for byte you...
Nov
23
comment Is it ever reasonable to nest Java inner classes more than one level deep?
Those are anonymous inner classes, not nested inner classes. The two concepts are treated differently at java.sun.com/docs/books/…
Nov
23
answered Is it ever reasonable to nest Java inner classes more than one level deep?
Nov
23
answered Running of multiple exe Java
Nov
23
comment Running of multiple exe Java
consider just binding to the localhost interface (127.0.0.1)
Nov
23
comment Java custom logger: logging standards or/and best practices
Your choice - you WILL outgrow your logger someday...
Nov
23
comment Java: Getting the properties of a class to construct a string representation
+1 for compile time Lombok example
Nov
22
answered javamail vs sendmail performance during bulk email
Nov
22
comment PDF file generation from XML or HTML
Please see my answer for a suggestion for "an XSLT style sheet".
Nov
22
answered PDF file generation from XML or HTML
Nov
22
comment Is there a Java XML API that can parse a document without resolving character entities?
If you have entities in there they must be defined or your document is not valid.
Nov
22
comment Java Exceptions, What to catch and what not to?
It may well be possible for a low level routine to determine that this is an uncorrectable problem. Hence the "time to crash" wording. The outermost exception handler may then allow the user to do stuff, but basically the execution is aborted. How would you handle a "eh, database went away" situtation inside your library routines?
Nov
22
comment Java Exceptions, What to catch and what not to?
I do not agree. Calling System.exit(1) does not allow final-blocks to run. Throwing an exception that will bubble up, will.
Nov
22
comment Java Exceptions, What to catch and what not to?
Only at the topmost level.
Nov
22
answered Java Exceptions, What to catch and what not to?
Nov
22
comment Java Exceptions, What to catch and what not to?
You may want to do } catch (RuntimeException e) { new RuntimeException("more information for the maintainer", e); } This could be to capture important things like record id in the database, or similar in the stack trace to help a maintainer fix an issue without having to reproduce the whole scenario.
Nov
22
comment Run JUnit automatically when building Eclipse project
We do not have full test coverage (ah, the joy of legacy code). I run the tests if I think it's necessary. I know that the build server will run the tests and notify me if they are broken, so I don't have to.
Nov
21
comment Advice to improve programmer communication skills
Interesting. Out of curiosity, what do you think caused these personality conflicts? Different cultures? Different ages? Egos?
Nov
21
comment JSP files in external directory
If you need a generic solution you must conform to the EAR standard. I do not believe it allows for external components.
Nov
21
answered Why are C, C++, and LISP so prevalent in embedded devices and robots?
Nov
21
comment Why are C, C++, and LISP so prevalent in embedded devices and robots?
@Steve, in C you CAN write programs that can run in that space. C is nice if the alternative is raw assembly.
Nov
21
comment Why are C, C++, and LISP so prevalent in embedded devices and robots?
Lisp also happens to be the most powerful language - quite convenient in something small.
Nov
21
comment Run JUnit automatically when building Eclipse project
consider a save action.
Nov
21
answered Can’t run eclipse on netbook MSi wind! HELP
Nov
21
answered How to bulk cleanup imports in Java with eclipse?
Nov
21
answered Run JUnit automatically when building Eclipse project
Nov
21
answered upload multiple files using java
Nov
21
answered Where & How to start a career as a software developer
Nov
20
answered Accessing private variables in Java via reflection
Nov
20
answered Debugging customer firewall issues
Nov
20
answered Log4J: Strategies for creating Logger instances
Nov
20
answered Java custom logger: logging standards or/and best practices
Nov
19
accepted JUnit View in Eclipse on OSX Snow Leopard