上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: @ApolloConfigChangeListener private void configChangeListter(ConfigChangeEvent changeEvent) { } changeEvent可以获取被修改的配置 阅读全文
posted @ 2021-06-21 15:28 动力起点 阅读(526) 评论(0) 推荐(0)
摘要: 1.service层创建分页对象 Page<AreaDTO> pageData = new Page<>(pageIndex,pageSize); String cityIds = configParamService.getConfigValueByCode(PARAM_CODE,GROUP_CO 阅读全文
posted @ 2021-06-17 18:22 动力起点 阅读(272) 评论(0) 推荐(0)
摘要: import org.elasticsearch.action.search.SearchRequest; import org.elasticsearch.action.search.SearchResponse; import org.elasticsearch.client.RequestOp 阅读全文
posted @ 2021-06-14 21:58 动力起点 阅读(534) 评论(0) 推荐(0)
摘要: 对es查询的索引的company,其有如下字段,下面是一个示例数据 "id": "1", //id "name": "张三",//姓名 "sex": "男",//性别 "age": 49,//年龄 "birthday": "1970-01-01",//生日 "position": "董事长",//职 阅读全文
posted @ 2021-06-14 20:34 动力起点 阅读(1057) 评论(0) 推荐(0)
摘要: 1.pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2021-06-13 23:35 动力起点 阅读(4251) 评论(0) 推荐(0)
摘要: package com.elasticsearch; import org.elasticsearch.action.ActionListener; import org.elasticsearch.action.search.SearchResponse; import org.elasticse 阅读全文
posted @ 2021-06-11 17:12 动力起点 阅读(1041) 评论(0) 推荐(0)
摘要: 安装nodejs淘宝镜像加速器 npm install -registry=https://registry.npm.taobao.org 安装vue - cli npm install vue-cli -g 查看是否安装完成 vue list 创建第一个基于webpack模板的vue应用程序 vu 阅读全文
posted @ 2021-04-11 17:24 动力起点 阅读(65) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>test</title> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <script 阅读全文
posted @ 2021-04-11 13:15 动力起点 阅读(37) 评论(0) 推荐(0)
摘要: var vue = new Vue({ el:"#myspan", data:{ list:[] }, mounted() { axios.get("data.json") .then(response=>this.list=response.data) }, methods:{ myclick:f 阅读全文
posted @ 2021-04-11 13:03 动力起点 阅读(244) 评论(0) 推荐(0)
摘要: /** * @param parentName 父级编号对应的字段名 * @param idName 主键的字段名称 * @param list 数据库查询出来的数据 * */ public static JSONArray createTreeJson(List<?> list,String pa 阅读全文
posted @ 2021-04-08 17:00 动力起点 阅读(44) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 10 下一页