logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue-element-ui组件 layout布局系列学习(一)

首先你要掌握的基础知识:.row 行概念<el-row></el-row>.col列概念<el-col></el-col>col组件的:span属性的布局调整,一共分为24栏:代码示例:<el-row><el-col :span="24

Java中List使用stream流转成map的几种方式

{“1”:{“person”:{“address”:“森林第一个小屋”,“name”:“熊大”},“id”:“1”},“2”:{“person”:{“address”:“森林第二个小屋”,“name”:“熊二”},“id”:“2”},“3”:{“person”:{“address”:“森林第三个小屋”,“name”:“光头强”},“id”:“3”}}{“光头强”:[“森林第三个小屋”],“熊大”:

文章图片
#java
tensorflow环境使用

启动anaconda3source activate tensorflow出来(tensorflow) 192:~ fengbin$输入python出来>>>输入 下面 能打印出"b'hello,tensorf'" 则表示成功.import tensorflow as tfhello = tf.constant('hello,tenso

#tensorflow
You have not concluded your merge (MERGE_HEAD exists). Exiting because of unfinished merge.

You have not concluded your merge (MERGE_HEAD exists). Exiting because of unfinished merge.git fetch --allgit reset --hard origin/dev

Druid LogFilter输出可执行的SQL

输出可执行SQL在日常排查SQL执行错误还是很实用的。其原理是在PreparedStatement.execute执行之后,调用SQLUtils.format打印出可执行的SQL。FilterEventAdapter这个类很关键,它会在SQL执行之前或者之后,调用扩展的处理,具体的处理逻辑又委派给子类实现。

文章图片
#sql#数据库#java
设计模式之Wrapper

这个模式其实是Adapter模式和Decorator模式的统称。1. 范例Servlet规范中的javax.servlet.http.HttpServletRequestWrapper就是这种模式的经典例子。HttpServletRequestWrapper继承自ServletRequestWrapper, 同时实现了HttpServletRequest。而ServletRequestWrappe

#设计模式
到底了