打包的时候报出了这么一个问题:-source 1.5 中不支持 lambda 表达式


解决办法:pom.xml中配置一下jdk版本

<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>


参考文章:http://www.cnblogs.com/softidea/p/6256543.html