上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: 参考文档 https://blog.csdn.net/kongxx/article/details/65435076 https://www.cnblogs.com/lishuai0214/articles/4294486.html 阅读全文
posted @ 2018-10-27 10:51 liuxm-刘小明 阅读(457) 评论(0) 推荐(0)
摘要: 实验环境 springboot1.5.9 ,junit4.12以上 添加pom依赖 编写测试代码 参考文章 https://blog.csdn.net/limenghua9112/article/details/79694849 阅读全文
posted @ 2018-10-24 17:04 liuxm-刘小明 阅读(341) 评论(0) 推荐(0)
摘要: import paramiko #创建SSH对象 ssh = paramiko.SSHClient() #把要连接的机器添加到known_hosts文件中 ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) #连接服务器 ssh.connect(hostname='192.168.1.96', port=22, usern... 阅读全文
posted @ 2018-10-23 15:58 liuxm-刘小明 阅读(1352) 评论(0) 推荐(0)
摘要: 原文地址 https://blog.csdn.net/u010897775/article/details/80311786?utm_source=blogxgwz0 阅读全文
posted @ 2018-10-23 15:56 liuxm-刘小明 阅读(1541) 评论(0) 推荐(0)
摘要: SpringBoot使用RestTempate SpringBoot使用RestTemplate摘要认证 SpringBoot使用RestTemplate基础认证 SpringBoot使用RestTemplate 调用exchange方法 显示错误信息 设置pom引用 <?xml version=" 阅读全文
posted @ 2018-10-22 11:12 liuxm-刘小明 阅读(4112) 评论(0) 推荐(0)
摘要: SpringBoot使用RestTempate SpringBoot使用RestTemplate摘要认证 SpringBoot使用RestTemplate基础认证 SpringBoot使用RestTemplate 调用exchange方法 显示错误信息 pom文件引用 配置resttemplate 阅读全文
posted @ 2018-10-22 10:59 liuxm-刘小明 阅读(3653) 评论(1) 推荐(0)
摘要: Pom.xml 服务接口 服务实现 发布服务 验证 创建成功以后webservice是在 /services/目录下 如http://localhost:8080/services/mdmws?wsdl 阅读全文
posted @ 2018-10-18 15:32 liuxm-刘小明 阅读(3677) 评论(0) 推荐(0)
摘要: 可以选择在http{ }中设置:client_max_body_size 20m; 也可以选择在server{ }中设置:client_max_body_size 20m; 还可以选择在location{ }中设置:client_max_body_size 20m; 三者到区别是:http{} 中控 阅读全文
posted @ 2018-10-18 14:19 liuxm-刘小明 阅读(148) 评论(0) 推荐(0)
摘要: 创建数据库创建数据库并设置数据库默认字段编码格式 create database database_name default charset utf8 collate utf8_unicode_ci; 设置auto_increment字段的最小值 ALETER TABLE table_name AU 阅读全文
posted @ 2018-10-17 17:12 liuxm-刘小明 阅读(117) 评论(0) 推荐(0)
摘要: AOP实现机制http://www.iteye.com/topic/1116696 AOP: (Aspect Oriented Programming) 面向切面编程AOP包括切面(aspect)、通知(advice)、连接点(joinpoint),实现方式就是通过对目标对象的代理在连接点前后加入通 阅读全文
posted @ 2018-10-17 12:21 liuxm-刘小明 阅读(375) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页