Java:用Lambda表达式简化代码一例
之前,调用第3方服务,每个方法都差不多“长”这样, 写起来啰嗦, 改起来麻烦, 还容易改漏。
public void authorizeRoleToUser(Long userId, List<Long> roleIds) {
try {
power.authorizeRoleToUser(userId, roleIds);
} catch (MotanCustomException ex) {
if (ex.getCode().equals(MSUserException.notLogin().getCode()))
throw UserException.notLogin();
if (ex.getCode().equals(MSPowerException.haveNoPower().getCode()))
throw PowerException.haveNoPower();
throw ex;
} catch (MotanServiceException ex) {
CatHelper.logEventService("Power-authorizeRoleToUser", "authorizeRoleToUser", ex.getStatus(),
ex.getErrorCode(), ex.getMessage());
throw ex;
} catch (MotanAbstractException ex) {
CatHelper.logEventService("Power-authorizeRoleToUser", "authorizeRoleToUser", ex.getStatus(),
ex.getErrorCode(), ex.getMessage());
throw ex;
} catch (Exception ex) {
CatHelper.logError(ex);
throw ex;
}
}
我经过学习和提取封装, 将try ... catch ... catch .. 提取为公用, 得到这2个方法:
import java.util.function.Supplier; public static <T> T tryCatch(Supplier<T> supplier, String serviceName, String methodName) {
try {
return supplier.get();
} catch (MotanCustomException ex) {
if (ex.getCode().equals(MSUserException.notLogin().getCode()))
throw UserException.notLogin();
if (ex.getCode().equals(MSPowerException.haveNoPower().getCode()))
throw PowerException.haveNoPower();
throw ex;
} catch (MotanServiceException ex) {
CatHelper.logEventService(serviceName + "-" + methodName, methodName, ex.getStatus(), ex.getErrorCode(),
ex.getMessage());
throw ex;
} catch (MotanAbstractException ex) {
CatHelper.logEventService(serviceName + "-" + methodName, methodName, ex.getStatus(), ex.getErrorCode(),
ex.getMessage());
throw ex;
} catch (Exception ex) {
CatHelper.logError(ex);
throw ex;
}
} public static void tryCatch(Runnable runnable, String serviceName, String methodName) {
tryCatch(() -> {
runnable.run();
return null;
}, serviceName, methodName);
}
现在用起来是如此简洁。像这种无返回值的:
public void authorizeRoleToUser(Long userId, List<Long> roleIds) {
tryCatch(() -> { power.authorizeRoleToUser(userId, roleIds); }, "Power", "authorizeRoleToUser");
}
还有这种有返回值的:
public List<RoleDTO> listRoleByUser(Long userId) {
return tryCatch(() -> power.listRoleByUser(userId), "Power", "listRoleByUser");
}
这是我的第一篇Java文章。学习Java的过程中,既有惊喜,也有失望。以后会继续来分享心得。
--------------我是分隔线---------------
后来发现以上2个方法还不够用, 原因是有一些方法会抛出 checked 异常, 于是又再添加了一个能处理异常的, 这次意外发现Java的throws也支持泛型, 赞一个:
public static <T, E extends Throwable> T tryCatchException(SupplierException<T, E> supplier, String serviceName,
String methodName) throws E {
try {
return supplier.get();
} catch (MotanCustomException ex) {
if (ex.getCode().equals(MSUserException.notLogin().getCode()))
throw UserException.notLogin();
if (ex.getCode().equals(MSPowerException.haveNoPower().getCode()))
throw PowerException.haveNoPower();
throw ex;
} catch (MotanServiceException ex) {
CatHelper.logEventService(serviceName + "-" + methodName, methodName, ex.getStatus(), ex.getErrorCode(),
ex.getMessage());
throw ex;
} catch (MotanAbstractException ex) {
CatHelper.logEventService(serviceName + "-" + methodName, methodName, ex.getStatus(), ex.getErrorCode(),
ex.getMessage());
throw ex;
} catch (Exception ex) {
CatHelper.logError(ex);
throw ex;
}
} @FunctionalInterface
public interface SupplierException<T, E extends Throwable> { /**
* Gets a result.
*
* @return a result
*/
T get() throws E;
}
为了不至于维护两份catch集, 将原来的带返回值的tryCatch改为调用tryCatchException:
public static <T> T tryCatch(Supplier<T> supplier, String serviceName, String methodName) {
return tryCatchException(() -> supplier.get(), serviceName, methodName);
}
这个世界又完善了一步。
---------------我是第2条分隔线--------------------
前面制作了3种情况:
1.无返回值,无 throws
2.有返回值,无 throws
3.有返回值,有 throws
不确定会不会出现“无返回值,有throws“的情况。后来真的出现了!依样画葫芦,弄出了这个:
public static <E extends Throwable> void tryCatchException(RunnableException<E> runnable, String serviceName,
String methodName) throws E {
tryCatchException(() -> {
runnable.run();
return null;
}, serviceName, methodName);
}
@FunctionalInterface
public interface RunnableException<E extends Throwable> {
void run() throws E;
}
现在,”人齐了“,拍张全家福:
package com.company.system.util; import java.util.function.Supplier; import org.springframework.beans.factory.BeanCreationException; import com.company.cat.monitor.CatHelper;
import com.company.system.customException.PowerException;
import com.company.system.customException.ServiceException;
import com.company.system.customException.UserException;
import com.company.hyhis.ms.user.custom.exception.MSPowerException;
import com.company.hyhis.ms.user.custom.exception.MSUserException;
import com.company.hyhis.ms.user.custom.exception.MotanCustomException;
import com.weibo.api.motan.exception.MotanAbstractException;
import com.weibo.api.motan.exception.MotanServiceException; public class ThirdParty { public static void tryCatch(Runnable runnable, String serviceName, String methodName) {
tryCatch(() -> {
runnable.run();
return null;
}, serviceName, methodName);
} public static <T> T tryCatch(Supplier<T> supplier, String serviceName, String methodName) {
return tryCatchException(() -> supplier.get(), serviceName, methodName);
} public static <E extends Throwable> void tryCatchException(RunnableException<E> runnable, String serviceName,
String methodName) throws E {
tryCatchException(() -> {
runnable.run();
return null;
}, serviceName, methodName);
} public static <T, E extends Throwable> T tryCatchException(SupplierException<T, E> supplier, String serviceName,
String methodName) throws E {
try {
return supplier.get();
} catch (MotanCustomException ex) {
if (ex.getCode().equals(MSUserException.notLogin().getCode()))
throw UserException.notLogin();
if (ex.getCode().equals(MSPowerException.haveNoPower().getCode()))
throw PowerException.haveNoPower();
throw ex;
} catch (MotanServiceException ex) {
CatHelper.logEventService(serviceName + "-" + methodName, methodName, ex.getStatus(), ex.getErrorCode(),
ex.getMessage());
throw ex;
} catch (MotanAbstractException ex) {
CatHelper.logEventService(serviceName + "-" + methodName, methodName, ex.getStatus(), ex.getErrorCode(),
ex.getMessage());
throw ex;
} catch (Exception ex) {
CatHelper.logError(ex);
throw ex;
}
} @FunctionalInterface
public interface RunnableException<E extends Throwable> {
void run() throws E;
} @FunctionalInterface
public interface SupplierException<T, E extends Throwable> {
T get() throws E;
}
}
Java:用Lambda表达式简化代码一例的更多相关文章
- Java使用lamda表达式简化代码
代码,自然写的越简洁越好啦,写的人舒服,看的人也舒服,一切为了高效. 要把有限的时间花到其它有意思的事情上去. 目的 学习简化代码的思路,使用jdk8新特性lamada表达式. 使用 某接口,只有一个 ...
- java的线程、创建线程的 3 种方式、静态代理模式、Lambda表达式简化线程
0.介绍 线程:多个任务同时进行,看似多任务同时进行,但实际上一个时间点上我们大脑还是只在做一件事情.程序也是如此,除非多核cpu,不然一个cpu里,在一个时间点里还是只在做一件事,不过速度很快的切换 ...
- 掌握 Java 8 Lambda 表达式
Lambda 表达式 是 Java8 中最重要的功能之一.使用 Lambda 表达式 可以替代只有一个函数的接口实现,告别匿名内部类,代码看起来更简洁易懂.Lambda 表达式 同时还提升了对 集合 ...
- Java 8 Lambda表达式探险
为什么? 我们为什么需要Lambda表达式 主要有三个原因: > 更加紧凑的代码 比如Java中现有的匿名内部类以及监听器(listeners)和事件处理器(hand ...
- 深入探索Java 8 Lambda表达式
2014年3月,Java 8发布,Lambda表达式作为一项重要的特性随之而来.或许现在你已经在使用Lambda表达式来书写简洁灵活的代码.比如,你可以使用Lambda表达式和新增的流相关的API,完 ...
- Java 8 Lambda表达式
Java 8 Lambda表达式探险 http://www.cnblogs.com/feichexia/archive/2012/11/15/Java8_LambdaExpression.html 为 ...
- 深入浅出 Java 8 Lambda 表达式
摘要:此篇文章主要介绍 Java8 Lambda 表达式产生的背景和用法,以及 Lambda 表达式与匿名类的不同等.本文系 OneAPM 工程师编译整理. Java 是一流的面向对象语言,除了部分简 ...
- Java 8 Lambda表达式10个示例【存】
PS:不能完全参考文章的代码,请参考这个文件http://files.cnblogs.com/files/AIThink/Test01.zip 在Java 8之前,如果想将行为传入函数,仅有的选择就是 ...
- Java 8 Lambda 表达式
Lambda 是啥玩意 简单来说,Lambda 就是一个匿名的方法,就这样,没啥特别的.它采用一种非常简洁的方式来定义方法.当你想传递可复用的方法片段时,匿名方法非常有用.例如,将一个方法传递给另外一 ...
随机推荐
- 解决input[type=file]打开时慢、卡顿问题
经过测试发现,在mac里面safari.Firefox.Chrome(opera不知道为啥老闪退)都没有卡顿问题 在windows里面,Firefox不卡顿,只有Chrome卡顿. 然而,这个插件是从 ...
- Java 字符排序问题
Java 字符排序问题 未专注于排序算法,而是写了一个MyString类,实现了comparable的接口,然后用Arrays的sort方法来实现排序.我觉得这道题的难度在于如果比较两个.因为大小写的 ...
- log4go的日志滚动处理——适应生产环境的需要
日志处理有三类使用环境,开发环境DE,测试环境TE,生产环境PE. 前两类可以看成是一类,重要的是屏幕显示--termlog.生产环境中主要用的是socklog 和 filelog,即网络传输日志和文 ...
- Python中的可变对象和不可变对象
Python中的可变对象和不可变对象 什么是可变/不可变对象 不可变对象,该对象所指向的内存中的值不能被改变.当改变某个变量时候,由于其所指的值不能被改变,相当于把原来的值复制一份后再改变,这会开辟一 ...
- iOS设置圆角的常用方法
//第一种方法:最常用的方法,但是性能最差 UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100 ...
- Vue表单控件绑定
前面的话 本文将详细介绍Vue表单控件绑定 基础用法 可以用 v-model 指令在表单控件元素上创建双向数据绑定.它会根据控件类型自动选取正确的方法来更新元素.v-model本质上不过是语法糖,它负 ...
- JavaScript实现的--贪吃蛇
总的实现思路: 一.效果部分: 1.编写html代码,加上样式. 二.JavaScript部分: 1.利用dom方法创建一块草坪,即活动区域: 2.创建一条蛇,并设置其初始位置: ...
- NYOJ 57 6174问题
6174问题 时间限制:1000 ms | 内存限制:65535 KB 难度:2 描述 假设你有一个各位数字互不相同的四位数,把所有的数字从大到小排序后得到a,从小到大后得到b,然后用a-b替 ...
- 28.Implement strStr()【leetcod】
Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle ...
- MySQL replication illegal mix of collations
MySQL replication case 一则 转载:http://www.vmcd.org/2013/09/mysql-replication-case-%E4%B8%80%E5%88%99/ ...