上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 37 下一页
  2019年1月7日
摘要: 构架工程 创建一个springboot工程,去消费RESTFUL的服务。这个服务是 http:///gturnquist-quoters.cfapps.io/api/random ,它会随机返回Json字符串。 在Spring项目中,它提供了一个非常简便的类,叫RestTemplate,它可以很简便 阅读全文
posted @ 2019-01-07 10:49 巨象 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 准备工作 15min IDEA maven 3.0 在开始构建项目之前,机器需要安装rabbitmq,你可以去官网下载,http://www.rabbitmq.com/download.html ,如果你是用的Mac(程序员都应该用mac吧),你可以这样下载: 1 brew install rabb 阅读全文
posted @ 2019-01-07 10:47 巨象 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 环境依赖 创建一个新的springboot工程,在其pom文件,加入spring-boot-starter-data-redis依赖: 创建一个消息接收者 REcevier类,它是一个普通的类,需要注入到springboot中。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 阅读全文
posted @ 2019-01-07 10:43 巨象 阅读(2046) 评论(0) 推荐(0) 编辑
  2019年1月3日
摘要: 正 文: 数据库更新就一种方法Update,其标准格式:Update 表名 set 字段=值 where 条件只是依据数据的来源不同,还是有所差别的: 1.从外部输入这样的比較简单例:update tb set UserName="XXXXX" where UserID="aasdd"2.一些内部变 阅读全文
posted @ 2019-01-03 09:59 巨象 阅读(5059) 评论(0) 推荐(0) 编辑
  2019年1月1日
摘要: #int : 字段类型 alter table 表名 modify 字段名 int auto_increment primary key 阅读全文
posted @ 2019-01-01 21:26 巨象 阅读(1789) 评论(0) 推荐(1) 编辑
摘要: 目录 一、概述 二、MySQL安装 三、安装成功验证 四、NavicatforMySQL下载及使用 一、概述 MySQL版本:5.7.17 下载地址:http://rj.baidu.com/soft/detail/12585.html?ald 客户端工具:NavicatforMySQL 绿色版下载地 阅读全文
posted @ 2019-01-01 20:28 巨象 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 开发工作中如果有任何不会的问题可咨询(永久有效): 微信号: Lifetime19931023 或者二维码: 1.进https://navicatformysql.en.softonic.com/官网 2.第二步 3.第三步等待下载完成 4.第四步双击 二,破解 1.链接:https://pan.b 阅读全文
posted @ 2019-01-01 18:10 巨象 阅读(21233) 评论(6) 推荐(3) 编辑
摘要: 原文地址: https://jingyan.baidu.com/article/fd8044fa2ecaf35030137a42.html MySQL是关系型数据库管理系统,是目前最流行的关系型数据库管理系统之一,目前大部分的WEB应用的数据都是承载在该系统的基础上的。那么我们的电脑上有没有安装它呢 阅读全文
posted @ 2019-01-01 17:17 巨象 阅读(696) 评论(0) 推荐(0) 编辑
  2018年12月28日
摘要: import os import glob path =imgDate_listResult for infile in glob.glob(os.path.join(path, '*.jpg')): os.remove(infile) 阅读全文
posted @ 2018-12-28 14:40 巨象 阅读(1056) 评论(0) 推荐(0) 编辑
摘要: str = ‘0123456789’ print str[0:3] #截取第一位到第三位的字符 print str[:] #截取字符串的全部字符 print str[6:] #截取第七个字符到结尾 print str[:-3] #截取从头开始到倒数第三个字符之前 print str[2] #截取第三 阅读全文
posted @ 2018-12-28 13:59 巨象 阅读(318) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 37 下一页