db = pymysql.connect(host="localhost", port=3306, user="root", passwd="xxx", db="stu_info")cursor = db.cursor(cursor=pymysql.cursors.DictCursor)cursor ...
分类:
数据库 时间:
2021-06-07 20:09:12
阅读次数:
0
PyMysql连接数据库 防止sql注入 import pymysql ? ? def insertsql(): # 建立连接 connection_sql = pymysql.connect( host='localhost', port=3306, user='root', password=' ...
分类:
数据库 时间:
2021-06-07 20:05:01
阅读次数:
0
解决从github上拉代码时报错“Failed to connect to localhost port 1080: Connection refused” 需要两行命令解决问题主要原因是使用了proxy代理,我们只需要关闭代理 git config --global http.proxy //查看 ...
分类:
其他好文 时间:
2021-06-05 18:13:54
阅读次数:
0
安装axios npm install axios 封装 import axios from 'axios' // 创建axios实例 const service = axios.create({ baseURL: 'http://localhost:9001', // api的base_url t ...
分类:
移动开发 时间:
2021-06-04 19:39:19
阅读次数:
0
Visual Studio 断点调试webapi接口,只能用localhost登录api,无法用ip地址作为url访问 解决方法: 1、必须以管理员身份运行VS 2、修改【applicationhost.config】文件下的内容 ①项目文件夹下找到隐藏文件夹".vs”->config->appli ...
2021年6月1日22:32:04 今天学习了一下SpringMVC。总结一下。 SpringMVC的过程 前提:一个SpringMVC的服务启动好了。等待请求进来。 浏览器发送了一个请求过来比如是http://localhost:8080/hello 服务器接到了这个请求。 开始SpringMVC ...
分类:
编程语言 时间:
2021-06-02 20:40:24
阅读次数:
0
1、首先需要安装node,node安装教程前一篇已经说了,是安装pm2 [root@localhost ~]# npm install -g pm2 2、pm2 命令参考 2.1 启动进程/应用 pm2 start bin/www 或 pm2 start app.js 2.2 重命名进程/应用 pm ...
分类:
其他好文 时间:
2021-06-02 18:51:56
阅读次数:
0
安装启动检查Mysql服务。netstat -tunlp (3306) spark 连接mysql驱动程序。–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 启动 Mysql shell ...
分类:
数据库 时间:
2021-06-02 18:50:45
阅读次数:
0
服务器规划: 修改3个微服务的配置文件: [root@localhost resources]# vi /opt/simple-microservice/order-service/order-service-biz/src/main/resources/application-fat.yml [r ...
分类:
其他好文 时间:
2021-06-02 18:16:48
阅读次数:
0
1.安装启动检查Mysql服务。netstat -tunlp (3306) 2.spark 连接mysql驱动程序。–cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 3.启动 Mysql ...
分类:
数据库 时间:
2021-06-02 18:04:49
阅读次数:
0