Mybatis Plus 新版lambda 表达式查询异常的处理
新版lambda 表达式查询异常
在使用新版mybatis plus工具时,新增的查询有支持lambda表达式。
注意点
在使用的时候一定要注意,设计的字段名是否标准。不允许字段名出现以 is get 为开头,负责mybatis plus 在编译lambda表达式会出错
lambda表达式异常应该如何处理
java 8中引入了lambda表达式,lambda表达式可以让我们的代码更加简介,业务逻辑更加清晰,但是在lambda表达式中使用的functional interface并没有很好的处理异常,因为jdk提供的这些functional interface通常都是没有抛出异常的,这意味着需要我们自己手动来处理异常。
因为异常分为unchecked exception和checked exception,我们分别来讨论。
处理unchecked exception
unchecked exception也叫做runtimeexception,出现runtimeexception通常是因为我们的代码有问题。runtimeexception是不需要被捕获的。也就是说如果有runtimeexception,没有捕获也可以通过编译。
我们看一个例子
list<integer> integers = arrays.aslist(1,2,3,4,5); integers.foreach(i -> system.out.println(1 / i));
这个例子是可以编译成功的,但是上面有一个问题,如果list中有一个0的话,就会抛出arithmeticexception。
虽然这个是一个unchecked exception,但是我们还是想处理一下:
integers.foreach(i -> { try { system.out.println(1 / i); } catch (arithmeticexception e) { system.err.println( "arithmetic exception occured : " + e.getmessage()); } });
上面的例子我们使用了try,catch来处理异常,简单但是破坏了lambda表达式的最佳实践。代码变得臃肿。
我们将try,catch移到一个wrapper方法中:
static consumer<integer> lambdawrapper(consumer<integer> consumer) { return i -> { try { consumer.accept(i); } catch (arithmeticexception e) { system.err.println( "arithmetic exception occured : " + e.getmessage()); } }; }
则原来的调用变成这样:
integers.foreach(lambdawrapper(i -> system.out.println(1 / i)));
但是上面的wrapper固定了捕获arithmeticexception,我们再将其改编成一个更通用的类:
static <t, e extends exception> consumer<t> consumerwrapperwithexceptionclass(consumer<t> consumer, class<e> clazz) { return i -> { try { consumer.accept(i); } catch (exception ex) { try { e excast = clazz.cast(ex); system.err.println( "exception occured : " + excast.getmessage()); } catch (classcastexception ccex) { throw ex; } } }; }
上面的类传入一个class,并将其cast到异常,如果能cast,则处理,否则抛出异常。
这样处理之后,我们这样调用:
ntegers.foreach( consumerwrapperwithexceptionclass( i -> system.out.println(1 / i), arithmeticexception.class));
处理checked exception
checked exception是必须要处理的异常,我们还是看个例子:
static void throwioexception(integer integer) throws ioexception { } list<integer> integers = arrays.aslist(1, 2, 3, 4, 5); integers.foreach(i -> throwioexception(i));
上面我们定义了一个方法抛出ioexception,这是一个checked exception,需要被处理,所以在下面的foreach中,程序会编译失败,因为没有处理相应的异常。
最简单的办法就是try,catch住,如下所示:
ntegers.foreach(i -> { try { throwioexception(i); } catch (ioexception e) { throw new runtimeexception(e); } });
当然,这样的做法的坏处我们在上面已经讲过了,同样的,我们可以定义一个新的wrapper方法:
static <t> consumer<t> consumerwrapper( throwingconsumer<t, exception> throwingconsumer) { return i -> { try { throwingconsumer.accept(i); } catch (exception ex) { throw new runtimeexception(ex); } }; }
我们这样调用:
integers.foreach(consumerwrapper(i -> throwioexception(i)));
我们也可以封装一下异常:
static <t, e extends exception> consumer<t> consumerwrapperwithexceptionclass( throwingconsumer<t, e> throwingconsumer, class<e> exceptionclass) { return i -> { try { throwingconsumer.accept(i); } catch (exception ex) { try { e excast = exceptionclass.cast(ex); system.err.println( "exception occured : " + excast.getmessage()); } catch (classcastexception ccex) { throw new runtimeexception(ex); } } }; }
然后这样调用:
integers.foreach(consumerwrapperwithexceptionclass( i -> throwioexception(i), ioexception.class));
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
下一篇: python Tkinter是什么