Have you been writing a lot of code following the Mute-Design-Patternβ’ lately? E.g.
try {
complex();
logic();
here();
}
catch (Exception ignore) {
// Will never happen hehe
System.exit(-1);
}Thereβs an easier way with Java 8!
Just add this very useful tool to your Utilities or Helper class:
public class Helper {
// 18395 lines of other code here
@FunctionalInterface
interface CheckedRunnable {
void run() throws Throwable;
}
public static void mute(CheckedRunnable r) {
try {
r.run();
}
catch (Throwable ignore) {
// OK, better stay safe
ignore.printStackTrace();
}
}
// 37831 lines of other code here
}Now you can wrap all your logic in this nice little wrapper:
mute(() -> {
complex();
logic();
here();
});Done!
Even better, in some cases, you can use method references
try (Connection con = ...;
PreparedStatement stmt = ...) {
mute(stmt::executeUpdate);
}| Reference: | The Mute Design Pattern from our JCG partner Lukas Eder at the JAVA, SQL, AND JOOQ blog. |
Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy
Thank you!
We will contact you soon.
π Photo of Lukas Eder
Lukas EderFebruary 19th, 2016Last Updated: February 19th, 2016
Lukas EderFebruary 19th, 2016Last Updated: February 19th, 2016
0 89 1 minute read

This site uses Akismet to reduce spam. Learn how your comment data is processed.