上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 1、文件路径操作 测试方法 @Test public void test5() { StringBuffer succBuffer = new StringBuffer("D:\\home\\weblogic\\tmp\\busdatagram\\141100\\20190627\\171320") 阅读全文
posted @ 2019-11-20 16:01 honghj 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1、创建spring-task.xml 在xml文件中加入命名空间 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xml 阅读全文
posted @ 2019-11-20 15:19 honghj 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 一、生成单向认证的https证书 建立服务器私钥,生成RSA秘钥。 会有两次要求输入密码, 然后获得了一个server.key文件. 以后使用此文件(通过openssl提供的命令或API)可能经常回要求输入密码,如果想去除输入密码的步骤可以使用以下命令: 创建服务器证书的申请文件server.csr 阅读全文
posted @ 2019-11-19 15:52 honghj 阅读(2445) 评论(0) 推荐(0) 编辑
摘要: 转载 https://blog.csdn.net/maoyeqiu/article/details/50490249 阅读全文
posted @ 2019-11-19 12:02 honghj 阅读(1890) 评论(0) 推荐(0) 编辑
摘要: mybatis关联 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper 阅读全文
posted @ 2019-11-19 11:28 honghj 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 一、特性 先来了解一下@Transactional注解事务的特性吧,可以更好排查问题 1、service类标签(一般不建议在接口上)上添加@Transactional,可以将整个类纳入spring事务管理,在每个业务方法执行时都会开启一个事务,不过这些事务采用相同的管理方式。 2、@Transact 阅读全文
posted @ 2019-11-19 11:22 honghj 阅读(4178) 评论(0) 推荐(0) 编辑
摘要: <insert id="insertArea" useGeneratedKeys="true" keyProperty="areaId" keyColumn="area_id"> INSERT INTO tb_area(area_name,area_desc,priority, create_tim 阅读全文
posted @ 2019-11-19 10:58 honghj 阅读(3359) 评论(0) 推荐(0) 编辑
摘要: http://192.168.220.3/localcfc/ 代替了http://192.168.220.3:8088/localcfc/ 阅读全文
posted @ 2019-11-19 08:58 honghj 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1 <?xml version="1.0" encoding="gbk"?> 2 <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" soap:encodingStyle="http://schemas.xmls 阅读全文
posted @ 2019-11-15 18:04 honghj 阅读(824) 评论(0) 推荐(0) 编辑
摘要: xml报文 <?xml version='1.0' encoding='utf-8'?> <bookstore> <book id='1'> <name>冰与火之歌</name> <author>乔治马丁</author> <year>2014</year> <price>89</price> </ 阅读全文
posted @ 2019-11-15 17:26 honghj 阅读(117) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页