当前位置: 首页 > news >正文

网站可以免费建立吗商丘微网站

网站可以免费建立吗,商丘微网站,58同城网站建设问题,wordpress 精简Elasticsearch 需要安装elasticsearch和Kibana#xff0c;应为Kibana中有一套控制台可以方便的进行操作。 安装elasticsearch 使用docker命令安装#xff1a; docker run -d \ --name es \-e ES_JAVA_OPTS-Xms512m -Xmx512m \ //设置他的运行内存空间#x…Elasticsearch 需要安装elasticsearch和Kibana应为Kibana中有一套控制台可以方便的进行操作。 安装elasticsearch 使用docker命令安装 docker run -d \ --name es \-e ES_JAVA_OPTS-Xms512m -Xmx512m \ //设置他的运行内存空间不要低于512否则出问题-e discovery.typesingle-node \ //设置安装模式当前为单点模式而非集群模式。-v es-data:/usr/share/elasticsearch/data \-v es-plugins:/usr/share/elasticsearch/plugins \--privileged \--network hm-net \-p 9200:9200 \-p 9300:9300 \ //集群通信的端口。elasticsearch:7.12.1 安装Kibana docker run -d \ --name kibana \ -e ELASTICSEARCH_HOSTShttp://es:9200 \ --networkhm-net \ -p 5601:5601 \ kibana:7.12.1 通过kibana向es发送Http请求。 倒排索引 小结 IK分词器 安装 在线安装 docker exec -it es ./bin/elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v7.12.1/elasticsearch-analysis-ik-7.12.1.zip 重启 docker restart es 线下安装 首先查看之前安装的Elasticsearch容器的plugins数据卷目录 docker volume inspect es-plugins 结果如下 [{CreatedAt: 2024-11-06T10:06:3408:00,Driver: local,Labels: null,Mountpoint: /var/lib/docker/volumes/es-plugins/_data,Name: es-plugins,Options: null,Scope: local} ] 可以看到elasticsearch的插件挂载到了/var/lib/docker/volumes/es-plugins/_data这个目录。我们需要把IK分词器上传至这个目录。 找到课前资料提供的ik分词器插件课前资料提供了7.12.1版本的ik分词器压缩文件你需要对其解压 然后上传至虚拟机的/var/lib/docker/volumes/es-plugins/_data这个目录 重启es容器 docker restart es IK分词器包含两种模式 ik_smart智能语义切分 ik_max_word最细粒度切分 POST /_analyze {analyzer: ik_smart,text: 黑马程序员学习java太棒了 } 结果 {tokens : [{token : 黑马,start_offset : 0,end_offset : 2,type : CN_WORD,position : 0},{token : 程序员,start_offset : 2,end_offset : 5,type : CN_WORD,position : 1},{token : 学习,start_offset : 5,end_offset : 7,type : CN_WORD,position : 2},{token : java,start_offset : 7,end_offset : 11,type : ENGLISH,position : 3},{token : 太棒了,start_offset : 11,end_offset : 14,type : CN_WORD,position : 4}] }由于互联网词汇不断增多需要拓展词汇库。 所以要想正确分词IK分词器的词库也需要不断的更新IK分词器提供了扩展词汇的功能。 1打开IK分词器config目录 注意如果采用在线安装的通过默认是没有config目录的需要把课前资料提供的ik下的config上传至对应目录。 在IKAnalyzer.cfg.xml配置文件内容添加 ?xml version1.0 encodingUTF-8? !DOCTYPE properties SYSTEM http://java.sun.com/dtd/properties.dtd propertiescommentIK Analyzer 扩展配置/comment!--用户可以在这里配置自己的扩展字典 *** 添加扩展词典--entry keyext_dictext.dic/entry /properties 在IK分词器的config目录新建一个 ext.dic可以参考config目录下复制一个配置文件进行修改 传智播客 泰裤辣 重启elasticsearch docker restart es 再次测试可以发现传智播客和泰裤辣都正确分词了 {tokens : [{token : 传智播客,start_offset : 0,end_offset : 4,type : CN_WORD,position : 0},{token : 开设,start_offset : 4,end_offset : 6,type : CN_WORD,position : 1},{token : 大学,start_offset : 6,end_offset : 8,type : CN_WORD,position : 2},{token : 真的,start_offset : 9,end_offset : 11,type : CN_WORD,position : 3},{token : 泰裤辣,start_offset : 11,end_offset : 14,type : CN_WORD,position : 4}] } 总结 分词器的作用是什么 创建倒排索引时对文档分词 用户搜索时对输入的内容分词 IK分词器有几种模式 ik_smart智能切分粗粒度 ik_max_word最细切分细粒度 IK分词器如何拓展词条如何停用词条 利用config目录的IkAnalyzer.cfg.xml文件添加拓展词典和停用词典 在词典中添加拓展词条或者停用词条 基础概念 索引库操作 Mapping映射属性 索引库操作 Restful规范 索引库操作 创建索引库 基本语法 请求方式PUT 请求路径/索引库名可以自定义 请求参数mapping映射 格式 PUT /索引库名称 {mappings: {properties: {字段名:{type: text,analyzer: ik_smart},字段名2:{type: keyword,index: false},字段名3:{properties: {子字段: {type: keyword}}},// ...略}} } 实例代码 PUT /hmall {mappings: {properties: {info:{type: text,analyzer: ik_smart},email:{type: keyword,index: false},name:{properties: {firstName:{type:keyword},lastName:{type:keyword}}}}} } 返回结果 {acknowledged : true,shards_acknowledged : true,index : hmall } 查询索引库 基本语法 请求方式GET 请求路径/索引库名 请求参数无 格式 GET /索引库名 实例代码 GET /hmall 查询结果 {hmall : {aliases : { },mappings : {properties : {email : {type : keyword,index : false},info : {type : text,analyzer : ik_smart},name : {properties : {firstName : {type : keyword},lastName : {type : keyword}}}}},settings : {index : {routing : {allocation : {include : {_tier_preference : data_content}}},number_of_shards : 1,provided_name : hmall,creation_date : 1731489076840,number_of_replicas : 1,uuid : KJqNTGY9RhiqFHkliRdGcw,version : {created : 7120199}}}} } 修改索引库 倒排索引结构虽然不复杂但是一旦数据结构改变比如改变了分词器就需要重新创建倒排索引这简直是灾难。因此索引库一旦创建无法修改mapping。 虽然无法修改mapping中已有的字段但是却允许添加新的字段到mapping中因为不会对倒排索引产生影响。因此修改索引库能做的就是向索引库中添加新字段或者更新索引库的基础属性。 语法说明 PUT /索引库名/_mapping {properties: {新字段名:{type: integer}} } 添加字段 PUT /hmall/_mapping {properties: {age:{type: integer}} } 返回结果 {acknowledged : true } 删除索引库 语法 请求方式DELETE 请求路径/索引库名 请求参数无 语法格式 DELETE /索引库名 删除库 DELETE /hmall 执行结果 {acknowledged : true }索引库操作总结 索引库操作有哪些 创建索引库PUT /索引库名 查询索引库GET /索引库名 删除索引库DELETE /索引库名 修改索引库添加字段PUT /索引库名/_mapping 可以看到对索引库的操作基本遵循的Restful的风格因此API接口非常统一方便记忆。 文档操作 新增文档 语法规范 POST /索引库名/_doc/文档id {字段1: 值1,字段2: 值2,字段3: {子属性1: 值3,子属性2: 值4}, } 实例代码 POST /hmall/_doc/1 {info: 黑马程序员Java讲师,email: zyitcast.cn,name: {firstName: 云,lastName: 赵} } 运行结果 {_index : hmall,_type : _doc,_id : 1,_version : 8,result : updated,_shards : {total : 2,successful : 1,failed : 0},_seq_no : 8,_primary_term : 1 } 查询文档 语法规范 GET /{索引库名称}/_doc/{id} 实例代码 GET /hmall/_doc/1 运行结果 {_index : hmall,_type : _doc,_id : 1,_version : 8,_seq_no : 8,_primary_term : 1,found : true,_source : {info : 黑马程序员Java讲师,email : zyitcast.cn,name : {firstName : 云,lastName : 赵}} }删除文档 语法规范 DELETE /{索引库名}/_doc/id值 实例代码 DELETE /hmall/_doc/1 运行结果 {_index : hmall,_type : _doc,_id : 1,_version : 9,result : deleted,_shards : {total : 2,successful : 1,failed : 0},_seq_no : 9,_primary_term : 1 }修改文档 全量修改 语法规范 PUT /{索引库名}/_doc/文档id {字段1: 值1,字段2: 值2,// ... 略 } 实例代码 #全量修改 PUT /hmall/_doc/1 {info: 黑马程序员Python讲师,email: lsitcast.cn,name: {firstName: 四,lastName: 李} } 运行结果 第一次运行由于前面已经删除了该文档所以 执行类型为 created. {_index : hmall,_type : _doc,_id : 1,_version : 10,result : created,_shards : {total : 2,successful : 1,failed : 0},_seq_no : 10,_primary_term : 1 } 第二次运行为修改返回的类型为 updated。 {_index : hmall,_type : _doc,_id : 1,_version : 11,result : updated,_shards : {total : 2,successful : 1,failed : 0},_seq_no : 11,_primary_term : 1 } 部分修改 语法规范 POST /{索引库名}/_update/文档id {doc: {字段名: 新的值,} } 实例代码 #局部修改 POST /hmall/_update/1 {doc: {email:ZhaoYuenitcast.com} } 运行结果 {_index : hmall,_type : _doc,_id : 1,_version : 12,result : updated,_shards : {total : 2,successful : 1,failed : 0},_seq_no : 12,_primary_term : 1 } 当前文档的数据 {_index : hmall,_type : _doc,_id : 1,_version : 12,_seq_no : 12,_primary_term : 1,found : true,_source : {info : 黑马程序员Python讲师,email : ZhaoYuenitcast.com,name : {firstName : 四,lastName : 李}} } 文档基础操作小结 文档批量处理 index代表新增操作 _index指定索引库名 _id指定要操作的文档id { field1 : value1 }则是要新增的文档内容 delete代表删除操作 _index指定索引库名 _id指定要操作的文档id update代表更新操作 _index指定索引库名 _id指定要操作的文档id { doc : {field2 : value2} }要更新的文档字段 #批量新增 POST /_bulk {index: {_index:hmall, _id: 3}} {info: 黑马程序员C讲师, email: wwitcast.cn, name:{firstName: 五, lastName:王}} {index: {_index:hmall, _id: 4}} {info: 黑马程序员前端讲师, email: zhangsanitcast.cn, name:{firstName: 三, lastName:张}}POST /_bulk {delete:{_index:hmall, _id: 3}} {delete:{_index:hmall, _id: 4}} JavaRestClient 作用向restful接口发送请求。 客户端初始化 1在item-service模块中引入es的RestHighLevelClient依赖 dependencygroupIdorg.elasticsearch.client/groupIdartifactIdelasticsearch-rest-high-level-client/artifactId /dependency 2因为SpringBoot默认的ES版本是7.17.10所以我们需要覆盖默认的ES版本 propertiesmaven.compiler.source11/maven.compiler.sourcemaven.compiler.target11/maven.compiler.targetelasticsearch.version7.12.1/elasticsearch.version/properties 3初始化RestHighLevelClient 初始化的代码如下 RestHighLevelClient client new RestHighLevelClient(RestClient.builder(HttpHost.create(http://192.168.150.101:9200) )); 4)创建一个测试用例来实现 package com.hmall.item.es;import org.apache.http.HttpHost; import org.elasticsearch.client.RestClient; import org.elasticsearch.client.RestHighLevelClient; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach;import java.io.IOException;public class Test {private RestHighLevelClient client;//创建开始初始化函数对客户端进行初始化BeforeEachvoid setUp() {this.client new RestHighLevelClient(RestClient.builder(HttpHost.create(http://192.168.21.101:9200)));}//测试代码org.junit.jupiter.api.Testpublic void test(){System.out.println(client);}//测试用例结束后释放资源AfterEachvoid tearDown() throws IOException {client.close();} } 商品Mapping映射 分析那些字段需要添加到文档中。 根据分析编写的需求 PUT /hmall {mappings: {properties: {id:{type: keyword},name:{type: text,analyzer: ik_smart},price:{type: integer},image:{type: keyword,index: false},category:{type: keyword},brand:{type: keyword},sold:{type: integer},commentCount:{type: integer,index: false},isAD:{type: boolean},updateTime:{type: date}}} } 索引库操作 创建索引库 //创建索引库org.junit.jupiter.api.Testpublic void testCreateIndex() throws IOException {//创建Requst对象CreateIndexRequest request new CreateIndexRequest(items);//准备参数 ,将编写的JSON字符串赋值给MAPPINF_JSONXContentType.JSON用于指定是JSON格式request.source(MAPPINF_JSON, XContentType.JSON);//发送请求RequestOptions.DEFAULT为是否有自定义配置选择默认client.indices().create(request, RequestOptions.DEFAULT);}private final String MAPPINF_JSON {\n \mappings\: {\n \properties\: {\n \id\:{\n \type\: \keyword\\n },\n \name\:{\n \type\: \text\,\n \analyzer\: \ik_smart\\n },\n \price\:{\n \type\: \integer\\n },\n \image\:{\n \type\: \keyword\,\n \index\: false\n },\n \category\:{\n \type\: \keyword\\n },\n \brand\:{\n \type\: \keyword\\n },\n \sold\:{\n \type\: \integer\\n },\n \commentCount\:{\n \type\: \integer\,\n \index\: false\n },\n \isAD\:{\n \type\: \boolean\\n },\n \updateTime\:{\n \type\: \date\\n }\n }\n }\n }; 删除索引库 //删除索引库org.junit.jupiter.api.Testpublic void testDeleteIndex() throws IOException {//创建Requst对象DeleteIndexRequest request new DeleteIndexRequest(items);//发送请求client.indices().delete(request,RequestOptions.DEFAULT);} 查看索引库 //查找索引库org.junit.jupiter.api.Testpublic void testGetIndex() throws IOException {//创建Requst对象GetIndexRequest request new GetIndexRequest(items);//发送2请求 // client.indices().get(request, RequestOptions.DEFAULT);//由于GEt请求返回的数据较多如果只需要判断是否存在则使用exists方法boolean exists client.indices().exists(request, RequestOptions.DEFAULT);System.out.println(exists exists);} 文档操作 新增文档 由于索引库结构与数据库结构还存在一些差异因此我们要定义一个索引库结构对应的实体。 package com.hmall.item.domain.po;import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data;import java.time.LocalDateTime;Data ApiModel(description 索引库实体) public class ItemDoc{ApiModelProperty(商品id)private String id;ApiModelProperty(商品名称)private String name;ApiModelProperty(价格分)private Integer price;ApiModelProperty(商品图片)private String image;ApiModelProperty(类目名称)private String category;ApiModelProperty(品牌名称)private String brand;ApiModelProperty(销量)private Integer sold;ApiModelProperty(评论数)private Integer commentCount;ApiModelProperty(是否是推广广告true/false)private Boolean isAD;ApiModelProperty(更新时间)private LocalDateTime updateTime; } API语法 POST /{索引库名}/_doc/1 {name: Jack,age: 21 } 可以看到与索引库操作的API非常类似同样是三步走 1创建Request对象这里是IndexRequest因为添加文档就是创建倒排索引的过程 2准备请求参数本例中就是Json文档 3发送请求 变化的地方在于这里直接使用client.xxx()的API不再需要client.indices()了。 //新增文档org.junit.jupiter.api.Testpublic void test() throws IOException {//读取数据库获取商品信息Item item service.getById(317578);//将商品信息对象转换为DtoItemDoc itemDoc BeanUtil.copyProperties(item, ItemDoc.class);//将对象转换为JSONString jsonStr JSONUtil.toJsonStr(itemDoc);//创建Requst对象IndexRequest request new IndexRequest(items).id(itemDoc.getId());request.source(jsonStr, XContentType.JSON);//发送信息client.index(request, RequestOptions.DEFAULT);} package com.hmall.item.es;import cn.hutool.core.bean.BeanUtil; import cn.hutool.json.JSONUtil; import com.hmall.item.domain.dto.ItemDoc; import com.hmall.item.domain.po.Item; import com.hmall.item.service.impl.ItemServiceImpl; import org.apache.http.HttpHost; import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest; import org.elasticsearch.action.delete.DeleteRequest; import org.elasticsearch.action.get.GetRequest; import org.elasticsearch.action.get.GetResponse; import org.elasticsearch.action.index.IndexRequest; import org.elasticsearch.action.update.UpdateRequest; import org.elasticsearch.client.RequestOptions; import org.elasticsearch.client.RestClient; import org.elasticsearch.client.RestHighLevelClient; import org.elasticsearch.client.indices.CreateIndexRequest; import org.elasticsearch.client.indices.GetIndexRequest; import org.elasticsearch.common.xcontent.XContentType; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest;import java.io.IOException; SpringBootTest(properties {spring.profiles.activelocal}) public class docTest {private RestHighLevelClient client;Autowiredprivate ItemServiceImpl service;//创建开始初始化函数对客户端进行初始化BeforeEachvoid setUp() {this.client new RestHighLevelClient(RestClient.builder(HttpHost.create(http://192.168.21.101:9200)));}//新增文档,全局修改文档org.junit.jupiter.api.Testpublic void test() throws IOException {//读取数据库获取商品信息Item item service.getById(317578);//将商品信息对象转换为DtoItemDoc itemDoc BeanUtil.copyProperties(item, ItemDoc.class);//将对象转换为JSONString jsonStr JSONUtil.toJsonStr(itemDoc);//创建Requst对象IndexRequest request new IndexRequest(items).id(itemDoc.getId());request.source(jsonStr, XContentType.JSON);//发送信息client.index(request, RequestOptions.DEFAULT);}//查看文档org.junit.jupiter.api.Testpublic void testGet() throws IOException {//创建Requst对象GetRequest request new GetRequest(items,317578);//发送信息GetResponse response client.get(request, RequestOptions.DEFAULT);String json response.getSourceAsString();ItemDoc bean JSONUtil.toBean(json, ItemDoc.class);System.out.println(bean bean);}//删除文档org.junit.jupiter.api.Testpublic void testdelect() throws IOException {//创建Requst对象DeleteRequest request new DeleteRequest(items,317578);//发送信息client.delete(request, RequestOptions.DEFAULT);}//修改文档org.junit.jupiter.api.Testpublic void testupdata2() throws IOException {//创建Requst对象UpdateRequest request new UpdateRequest(items,317578);//数据都是独立的不是成对出现的request.doc(price, 10000);//发送信息client.update(request, RequestOptions.DEFAULT);}//测试用例结束后释放资源AfterEachvoid tearDown() throws IOException {client.close();}} 批量操作文档 //新增文档,全局修改文档org.junit.jupiter.api.Testpublic void testBulk() throws IOException {//设置分页信息int size 1000,pageNo 1;//循环写入数据while (true){//读取数据库获取商品信息分页查询//设置当前查询条件即状态为起售//创建分页对象PageItem page service.lambdaQuery().eq(Item::getStatus, 1).page(new PageItem(pageNo, size));ListItem records page.getRecords();//判空if (records.isEmpty()||records null){return;}//创建Requst对象 // BulkRequest request new BulkRequest(); // for (Item item : records) { // request.add(new IndexRequest(items) // .id(item.getId().toString()) // .source(JSONUtil.toJsonStr(BeanUtil.copyProperties(item, ItemDoc.class))),XContentType.JSON // ); // }BulkRequest request new BulkRequest(items);for (Item item : records) {// 2.1.转换为文档类型ItemDTOItemDoc itemDoc BeanUtil.copyProperties(item, ItemDoc.class);// 2.2.创建新增文档的Request对象request.add(new IndexRequest().id(itemDoc.getId()).source(JSONUtil.toJsonStr(itemDoc), XContentType.JSON));}//发送信息client.bulk(request, RequestOptions.DEFAULT);pageNo;}}
文章转载自:
http://www.morning.hgkbj.cn.gov.cn.hgkbj.cn
http://www.morning.jtwck.cn.gov.cn.jtwck.cn
http://www.morning.dwrbn.cn.gov.cn.dwrbn.cn
http://www.morning.zlcsz.cn.gov.cn.zlcsz.cn
http://www.morning.cwskn.cn.gov.cn.cwskn.cn
http://www.morning.xgkxy.cn.gov.cn.xgkxy.cn
http://www.morning.kzqpn.cn.gov.cn.kzqpn.cn
http://www.morning.ktcfl.cn.gov.cn.ktcfl.cn
http://www.morning.smdnl.cn.gov.cn.smdnl.cn
http://www.morning.zbkwj.cn.gov.cn.zbkwj.cn
http://www.morning.dsmwy.cn.gov.cn.dsmwy.cn
http://www.morning.kfcz.cn.gov.cn.kfcz.cn
http://www.morning.hbxnb.cn.gov.cn.hbxnb.cn
http://www.morning.lmmh.cn.gov.cn.lmmh.cn
http://www.morning.qrpdk.cn.gov.cn.qrpdk.cn
http://www.morning.frsxt.cn.gov.cn.frsxt.cn
http://www.morning.byshd.cn.gov.cn.byshd.cn
http://www.morning.ycpnm.cn.gov.cn.ycpnm.cn
http://www.morning.rtmqy.cn.gov.cn.rtmqy.cn
http://www.morning.fmtfj.cn.gov.cn.fmtfj.cn
http://www.morning.fdsbs.cn.gov.cn.fdsbs.cn
http://www.morning.ngkgy.cn.gov.cn.ngkgy.cn
http://www.morning.lmfxq.cn.gov.cn.lmfxq.cn
http://www.morning.ho-use.cn.gov.cn.ho-use.cn
http://www.morning.gqcsd.cn.gov.cn.gqcsd.cn
http://www.morning.cjqcx.cn.gov.cn.cjqcx.cn
http://www.morning.dfdhx.cn.gov.cn.dfdhx.cn
http://www.morning.qrgfw.cn.gov.cn.qrgfw.cn
http://www.morning.rszwc.cn.gov.cn.rszwc.cn
http://www.morning.gwzfj.cn.gov.cn.gwzfj.cn
http://www.morning.znrlg.cn.gov.cn.znrlg.cn
http://www.morning.dyhlm.cn.gov.cn.dyhlm.cn
http://www.morning.sthgm.cn.gov.cn.sthgm.cn
http://www.morning.nwnbq.cn.gov.cn.nwnbq.cn
http://www.morning.qxwgx.cn.gov.cn.qxwgx.cn
http://www.morning.ymhjb.cn.gov.cn.ymhjb.cn
http://www.morning.rsnn.cn.gov.cn.rsnn.cn
http://www.morning.djgrg.cn.gov.cn.djgrg.cn
http://www.morning.bmnm.cn.gov.cn.bmnm.cn
http://www.morning.wjlnz.cn.gov.cn.wjlnz.cn
http://www.morning.rchsr.cn.gov.cn.rchsr.cn
http://www.morning.gktds.cn.gov.cn.gktds.cn
http://www.morning.rcmcw.cn.gov.cn.rcmcw.cn
http://www.morning.kdbcx.cn.gov.cn.kdbcx.cn
http://www.morning.jkwwm.cn.gov.cn.jkwwm.cn
http://www.morning.rjrnx.cn.gov.cn.rjrnx.cn
http://www.morning.ghxzd.cn.gov.cn.ghxzd.cn
http://www.morning.jrkzk.cn.gov.cn.jrkzk.cn
http://www.morning.cmfkp.cn.gov.cn.cmfkp.cn
http://www.morning.lyzwdt.com.gov.cn.lyzwdt.com
http://www.morning.kzrg.cn.gov.cn.kzrg.cn
http://www.morning.ailvturv.com.gov.cn.ailvturv.com
http://www.morning.dmwjl.cn.gov.cn.dmwjl.cn
http://www.morning.bbtn.cn.gov.cn.bbtn.cn
http://www.morning.mnqg.cn.gov.cn.mnqg.cn
http://www.morning.tgczj.cn.gov.cn.tgczj.cn
http://www.morning.wbqk.cn.gov.cn.wbqk.cn
http://www.morning.rhqr.cn.gov.cn.rhqr.cn
http://www.morning.nqyfm.cn.gov.cn.nqyfm.cn
http://www.morning.kgphd.cn.gov.cn.kgphd.cn
http://www.morning.tgdys.cn.gov.cn.tgdys.cn
http://www.morning.qbzfp.cn.gov.cn.qbzfp.cn
http://www.morning.yqpck.cn.gov.cn.yqpck.cn
http://www.morning.djxnw.cn.gov.cn.djxnw.cn
http://www.morning.xppj.cn.gov.cn.xppj.cn
http://www.morning.spghj.cn.gov.cn.spghj.cn
http://www.morning.hpmzs.cn.gov.cn.hpmzs.cn
http://www.morning.knlgk.cn.gov.cn.knlgk.cn
http://www.morning.ncqzb.cn.gov.cn.ncqzb.cn
http://www.morning.wjyyg.cn.gov.cn.wjyyg.cn
http://www.morning.bsqth.cn.gov.cn.bsqth.cn
http://www.morning.ljcf.cn.gov.cn.ljcf.cn
http://www.morning.xrct.cn.gov.cn.xrct.cn
http://www.morning.dsmwy.cn.gov.cn.dsmwy.cn
http://www.morning.webpapua.com.gov.cn.webpapua.com
http://www.morning.fhqdb.cn.gov.cn.fhqdb.cn
http://www.morning.guanszz.com.gov.cn.guanszz.com
http://www.morning.wgxtz.cn.gov.cn.wgxtz.cn
http://www.morning.szzxqc.com.gov.cn.szzxqc.com
http://www.morning.incmt.com.gov.cn.incmt.com
http://www.tj-hxxt.cn/news/242133.html

相关文章:

  • 帮老板做网站农产品的网站建设与维护论文
  • 解释seo网站推广app软件定制开发一般多少钱
  • 多语种 小语种网站推广方法双柏县住房和城乡建设局网站
  • 网站开发asp.net和sql数据库如何做网站301重定向
  • 不用写代码做网站电脑培训机构哪个好
  • 制作网站主题在线广告平面设计
  • 免费推广网站都有哪些弹窗网站制作
  • 网站建设的费用包括哪些内容wordpress网站更改主题信息
  • 怎么做网站给国外看见wordpress 插件 教程
  • 做网络推广要做网站吗织梦网站后台进不去
  • 和一个网站做接口wordpress 商业插件
  • 网站建设:上海珍岛图书馆网站开发需求分析
  • 做网站公司好企业网站建设的类型有哪些
  • 网站开发人员属于什么软件网络营销软件推广注册赚钱
  • 自己如何做网站关键词排名不要域名做网站
  • 个人网站例子大连工程预算服务
  • 北京微信网站建设报价单定制网站建设公司费用
  • 如何做网站的维护工作dw网页设计素材包下载
  • 什么网站做招聘效果好广州有几个区 分别叫什么
  • 做网站带后台多少钱农业信息中心网站建设
  • 网站只显示一个网址一个企业做网站的目的
  • 网站个人和企业有什么区别深圳工装公司
  • 个人是否可以做网站王烨个人简历
  • wordpress子目录站点选择主题互联网最吃香的职业
  • 手机版网站开发内部网站建设软件
  • 网站建设如何敲图标代码佛山网站建设公司88
  • 网站搭建北京怎样给网站做seo优化
  • 网站建设及运营岗位要求seo服务 收费
  • 中文网站开发软件网站快速盈利
  • 网站开发公司+重庆设计一个网站的价格