vote up 1 vote down star
3

I'm using the Apache Derby embedded database for unit testing in a Maven project. Unfortunately whenever I run the test I end up with the derby.log file in the root of the project. The database itself is created in the target directory (jdbc:derby:target/unittest-db;create=true) so that is not a problem. After consulting the reference guide I tried setting the logDevice parameter on the JDBC url (jdbc:derby:target/unittest-db;create=true;logDevice=/mylogs) but that seems to be for a different log, hence derby.log still appears.

Any help is much appreciated.

flag

1 Answer

vote up 2 vote down check

You can get rid of derby.log file by creating a class DerbyUtil with the static

public static final OutputStream DEV_NULL = new OutputStream() {         
    public void write(int b) { }     
};

and setting

derby.stream.error.field to "DerbyUtil.DEV_NULL".

Credit to

http://davidvancouvering.blogspot.com/2007/10/quiet-time-and-how-to-suppress-derbylog.html
link|flag
What if I'm using Derby through Hibernate? Where to I put the line "derby.stream.error.field"? – pek Sep 9 at 16:30
In a webapp it's a pain to set system props. Any way around it? – bmargulies Nov 13 at 14:29
I don't think so, but you can set things up in your web.xml or spring config to run at startup and do it there. – stevedbrown Nov 13 at 17:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.