摘要: IntelliJ IDEA +maven+springboot入门项目helloworld 1、创建maven工程 非web工程,不需要web项目。 后面直接下一步,下一步即可。 Maven项目创建完成。 2、配置springboot基本类 2.1 配置pom.xml文件, <?xml versio 阅读全文
posted @ 2019-02-19 10:51 wang_wei123 阅读(7971) 评论(0) 推荐(0) 编辑
摘要: CentOS6.5安装Ambari 参考:https://www.ibm.com/developerworks/cn/opensource/os-cn-bigdata-ambari/ [root@oracle yum.repos.d]# cat /etc/issue 检查操作系统 CentOS re 阅读全文
posted @ 2019-02-18 11:12 wang_wei123 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Python3爬取影片入库 1、服务器说明 [root@openshift maoyan]# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) [root@openshift maoyan]# python -V Python 阅读全文
posted @ 2019-02-18 11:08 wang_wei123 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 使用 Python 和 Flask 设计 RESTful API 参考文档:http://www.pythondoc.com/flask-restful/first.html 近些年来 REST (REpresentational State Transfer) 已变成 web services 和 阅读全文
posted @ 2019-02-18 09:31 wang_wei123 阅读(703) 评论(0) 推荐(0) 编辑
摘要: 1、后端服务器环境说明 [root@openshift flask]# python -V Python 3.6.3 :: Anaconda, Inc. [root@openshift flask]# cat /etc/redhat-release CentOS Linux release 7.4. 阅读全文
posted @ 2019-02-16 22:10 wang_wei123 阅读(4995) 评论(0) 推荐(0) 编辑
摘要: Python3+Django2.0基础入门demo 1、安装Python3环境 [root@openshift ~]# cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) 默认为Python2.7,需要安装Python3 [roo 阅读全文
posted @ 2019-02-13 23:27 wang_wei123 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 第13章 Web标准与CSS网页布局实例 HTML、CSS、JavaScript网页制作从入门到精通 1、DIV+CSS布局网页基础 1.1一列固定宽度 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Div+css布局基础</ 阅读全文
posted @ 2019-02-12 11:45 wang_wei123 阅读(302) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-02-12 10:57 wang_wei123 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 经典css布局案例 1、CSS浮动 包括:块元素和行内元素、display属性、浮动float。块元素和行内元素的区别是:块元素有大小,而行内元素没有;块元素默认单独占一行,行内元素都在同一行。 既然块元素和行内元素有各自的特点,当我们需要来回切换他们的模式时,该怎么做呢?例如想要块元素都按行排列。 阅读全文
posted @ 2019-02-11 17:13 wang_wei123 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: vue2.0-路由配置 参考:https://router.vuejs.org/zh/guide/#html 使用vue-cli创建的项目,先不需要安装路由模块。 1.安装 cnpm install vue-router --save 以下步骤配置文件均在mains.js文件上配置 2、引入rout 阅读全文
posted @ 2019-01-22 14:34 wang_wei123 阅读(449) 评论(0) 推荐(0) 编辑