一般在application.properties中配置服务器端口以及连接数据库配置,还可配置对应mapper.xml的位置供容器扫描,也可配置驼峰以及包实体类包别名等 server.port=8080 spring.datasource.driver-class-name=com.mysql.cj ...
分类:
移动开发 时间:
2021-06-30 18:26:12
阅读次数:
0
解决IDEA中resources下properties配置文件无法读取的问题 ...
分类:
其他好文 时间:
2021-06-30 18:04:27
阅读次数:
0
微信云上管车,接入微信开放平台的通讯录,审批流等接口,微信回调我们的接口,数据类型为xml格式,我们接口需要处理数据时用到XmlSerializer 为了提高性能,XML 序列化基础结构动态生成程序集,以便对指定类型进行序列化和反序列化。 该基础结构将找到并重新使用这些程序集。 仅当使用以下构造函数 ...
分类:
其他好文 时间:
2021-06-28 21:00:08
阅读次数:
0
title: java自定义序列化协议 tags: [序列化,protobuf] date: 2018/5/15 20:26:25 categories: 开发 java 序列化协议 相信大家见识过很序列化的框架 : fastjson , hessian ,kryo,protobuf,jdk序列化 ...
分类:
编程语言 时间:
2021-06-28 20:08:42
阅读次数:
0
转换流 什么是转换流 转换流提供了在字节流和字符流之间的转换 Java API提供了两个转换流: InputStreamReader: 将InputStream转换为Reader OutputStreamWriter:将Writer转换为OutputStream 字节流中的数据都是字符时,转成字符流 ...
分类:
编程语言 时间:
2021-06-28 19:36:57
阅读次数:
0
<build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </i ...
分类:
其他好文 时间:
2021-06-24 18:28:56
阅读次数:
0
TreeMap的测试 向TreeMap中添加key-value,要求key必须是同一个类创建的对象 因为要按照key进行排序:自然排序、定制排序 自然排序(User类中实现了Comparable接口): @Test public void test1(){ TreeMap map = new Tre ...
分类:
其他好文 时间:
2021-06-24 17:51:25
阅读次数:
0
1.配置:进入dubbo-monitor-simple-2.0.0\conf目录修改dubbo.properties文件 dubbo.registry.address=zookeeper://127.0.0.1:2181 2、监控中心配置 参考官网:https://dubbo.apache.org/ ...
分类:
其他好文 时间:
2021-06-23 16:44:46
阅读次数:
0
前期准备工作 数据库表 dp.properties driver=com.mysql.jdbc.Driver url=jdbc:mysql://localhost:3306/netshop?useSSL=true&useUnicode=true&characterEncoding=utf-8 use ...
分类:
其他好文 时间:
2021-06-23 16:40:43
阅读次数:
0
1、查看所有索引 GET _cat/indices 2、创建一个新的索引 PUT /test { "mappings": { "_doc": { "properties": { "id": {"type": "keyword"}, "title": {"type": "keyword"}, "esD ...
分类:
其他好文 时间:
2021-06-21 21:11:29
阅读次数:
0