forked from zanata/zanata-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request zanata#388 from zanata/rhbz1074365
rhbz1074365 Prevent thread leaks on redeploy
- Loading branch information
Showing
4 changed files
with
83 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
zanata-war/src/main/java/org/zanata/servlet/LeakListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright 2014, Red Hat, Inc. and individual contributors | ||
* as indicated by the @author tags. See the copyright.txt file in the | ||
* distribution for a full listing of individual contributors. | ||
* | ||
* This is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as | ||
* published by the Free Software Foundation; either version 2.1 of | ||
* the License, or (at your option) any later version. | ||
* | ||
* This software is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
|
||
package org.zanata.servlet; | ||
|
||
import java.util.logging.Level; | ||
|
||
import lombok.extern.java.Log; | ||
import se.jiderhamn.classloader.leak.prevention.ClassLoaderLeakPreventor; | ||
|
||
/** | ||
* @author Sean Flanigan <a href="mailto:[email protected]">[email protected]</a> | ||
* | ||
*/ | ||
@Log | ||
public class LeakListener extends ClassLoaderLeakPreventor { | ||
protected void debug(String s) { | ||
log.fine(s); | ||
} | ||
|
||
protected void info(String s) { | ||
log.info(s); | ||
} | ||
|
||
protected void warn(String s) { | ||
log.warning(s); | ||
} | ||
|
||
protected void warn(Throwable t) { | ||
log.log(Level.WARNING, "", t); | ||
} | ||
|
||
protected void error(String s) { | ||
log.severe(s); | ||
} | ||
|
||
protected void error(Throwable t) { | ||
log.log(Level.SEVERE, "", t); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters