Getting rid of derby.log

前端 未结 8 788
萌比男神i
萌比男神i 2020-12-23 12:19

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

8条回答
  •  一整个雨季
    2020-12-23 12:41

    If you don't have access to the configuration, you can execute this before making the connection:

    System.setProperty("derby.stream.error.field", "MyApp.DEV_NULL");
    

提交回复
热议问题