• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






子非鱼安知我命

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2020年8月19日

java基础-邮箱和日志的使用
摘要: 1.邮件告警-自动发送邮件 1.添加邮箱依赖 <!-- 邮件start --> <dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <version> 阅读全文
posted @ 2020-08-19 17:36 子非鱼安知我命 阅读(84) 评论(0) 推荐(0)
 
线程池技术整理
摘要: 线程池技术 1.代码使用线程池,根据系统上限自动分配线程数 //创建线程池ExecutorService fixedThreadPool = Executors.newFixedThreadPool(8);//常用创建线程池ExecutorService cachedThreadPool = Exe 阅读全文
posted @ 2020-08-19 17:34 子非鱼安知我命 阅读(27) 评论(0) 推荐(0)
 
java-stream简化写法整理
摘要: Stream写法 1.stream处理方式 List<students> list = new ArrayList<students>();list.add(new students("Anna",22,false));list.add(new students("Anti",37,false)); 阅读全文
posted @ 2020-08-19 17:33 子非鱼安知我命 阅读(216) 评论(0) 推荐(0)
 
vue.js结合Echarts开发图表
摘要: <template><el-row> <el-col :span="12"> <div id="zxt1" style="width:100%;height:500px;"></div> </el-col> <el-col :span="12"> <div id="zxt2" style="widt 阅读全文
posted @ 2020-08-19 17:31 子非鱼安知我命 阅读(367) 评论(0) 推荐(0)
 
java-lambda简化写法整理
摘要: lambda写法 //lambda 函数编程 替代匿名接口实现 //()参数列表 ->连接符 {方法体} //接口中只许有一个需要实现的接口 1. 简写多线程-run方法 new Thread(new Runnable() { @Override public void run() { System 阅读全文
posted @ 2020-08-19 17:30 子非鱼安知我命 阅读(623) 评论(0) 推荐(0)
 
qt4s自动化接口测试框架上手
摘要: QT4SDemo工程 此工程是为了示范qt4s框架使用方式的demo工程。 快速上手 环境准备: 1-安装python,如 2.7.13、2.7.16,配置好环境变量,包括根目录、Scripts目录、Tools目录 2-安装python组件,pip、setuptools,附下载地址 https:// 阅读全文
posted @ 2020-08-19 17:29 子非鱼安知我命 阅读(2170) 评论(0) 推荐(0)