Getting rid of derby.log

前端 未结 8 824
萌比男神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:49

    I have came up with another solution. Try this out; it worked for me. What I am doing here is I have changed the System.stream.error.file path and set it to one of the properties present under my property file. Just adding the below given code to your applicationContext.xml file will work.

    
      java.lang.System
      setProperty
      
        
          derby.stream.error.file
          ${derby.stream.error.file}
        
      
    
    

提交回复
热议问题