logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Springboot2.x——实体类绑定默认配置文件属性

Springboot需要通过配置文件直接读取属性时,可以将其注入到实体类上面,两种方法:@ConfigurationProperties和@value一、通过@ConfigurationProperties直接将配置文件整体关联@Component:将当前bean注入到容器中,@Configuration等于xml配置bean文件@ConfigurationProperties(pre...

Jmeter——Jmeter测试dubbo接口

一、安装Zookeeper环境1、安装:https://blog.csdn.net/wx19900503/article/details/803167772、启动:二、搭建Dubbo提供者1、新建maven项目2、新建接口类,DemoServicepublic interface DemoService {String getStr(String first,String second);...

#zookeeper#dubbo#jmeter +1
mac——安装zookeeper

ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务,是一个为分布式应用提供一致性服务的软件,提供的功能包括:配置维护、域名服务、分布式同步、组服务等。http://zookeeper.apache.org/一、下载zookeeper安装1、我选择zookeeper-3.4.10版本,下载后进行解压http://zookeeper.apache.org/releases.html#d

Vue——多选table列进行操作,支持分页

1、官网提供:手动添加一个el-table-column,设type属性为selection即可<template><div><el-button @click="TestSelect">按钮</el-button></div><el-tableref="multipleTable":data="tableData"

Vue——DatePicker日期选择器进行日期格式化

1、Element 日期选择器控件:<div><el-form:inline="true"class="demo-form-inline"><el-form-itemlabel="Time"required="required">...

Vue——v-if控制元素是否显示

show.vue文件如下:<el-table-column label="状态"><template slot-scope="scope"><el-buttonv-if="show":loading="true"type="danger"...

Vue——el-table中打开dialog修改数据

1、表格显示数据<el-table:data="tableData"style="width: 100%"><el-table-columnprop="battery_min"label="最小值"width="180"/><el-table-colum...

Nodejs——request-promise获取返回值

vue使用request-promise调用接口获取数据安装依赖:npm install --save requestnpm install --save request-promise若想方法返回接口返回值,需要使用回调函数,因为是异步操作1、demo如下var crypto = require('crypto')function getDevices() {}...

Vue——el-pagination分页显示

使用Element ui 中el-pagination进行分页显示1、el-table进行数据筛选::data="tableData3.slice((currentPage-1)*pagesize,currentPage*pagesize)"过滤当前页面需要显示的数据2、增加div 显示分页功能,修改total为tableData3数据的数量,tableData3我这边定义的[] 接口...

Opencv——轮廓相似度比较

图片进行边缘检测、轮廓提取之后,可以进行不同轮廓之间的相似比较主要函数:public staticdoublematchShapes(Matcontour1,Matcontour2,intmethod,...

#opencv
    共 16 条
  • 1
  • 2
  • 请选择