初次学习mybatis,跑一个最简单的demo,然而报错: java.sql.SQLException: Error setting driver on UnpooledDataSource. Cause: java.lang.ClassNotFoundException: Cannot find ...
分类:
数据库 时间:
2021-04-06 14:48:09
阅读次数:
0
Sublime Text 3 https://www.sublimetext.com/ Preferences --> Settings File Path: C:\Users\wuyong\AppData\Roaming\Sublime Text 3\Packages\User\Preferenc ...
分类:
其他好文 时间:
2021-04-05 12:36:42
阅读次数:
0
1、pycharm的安装 File -> Settings ->选择python的版本 ->点击加号 选择当前的文件进行安装 搜索pytest 安装当前文件 装好之后 以pytest方式运行部分代码,需要改该工程设置默认的运行器:file->Setting->Tools->Python Integr ...
分类:
其他好文 时间:
2021-03-31 12:34:21
阅读次数:
0
Django项目中,在pycharm使用python console进行操作时导包报错如下: django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not con ...
分类:
编程语言 时间:
2021-03-31 12:24:16
阅读次数:
0
在上一篇我们讲过,将src打包到dist,使用如下的命令: webpack ./src/main.js ./dist/bundle.js 但一般不会这样做,原因在于太长了,我们希望直接使用webpack来进行打包,这样就得在项目的根录下配置一个webpack.config.js文件,配置内容如下: ...
分类:
Web程序 时间:
2021-03-29 12:23:25
阅读次数:
0
public async Task CreateFileByHtmlAsync(ApiDBContent dbContext, WebPageParam setting, int tryCount = 0) { string pdfPath = Path.Combine(setting.FilePa ...
分类:
其他好文 时间:
2021-03-26 15:25:18
阅读次数:
0
直接上代码: 需要引用using Microsoft.Extensions.Configuration; public class AppSettings { /// <summary> /// 配置文件的根节点 /// </summary> private static readonly ICon ...
分类:
移动开发 时间:
2021-03-26 15:23:11
阅读次数:
0
1. Install git yum install git 2. Install Vundle.vim 2.1 mkdir ~/.vim/bundle 2.2 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vund ...
分类:
系统相关 时间:
2021-03-17 14:46:30
阅读次数:
0
在connection的生命里,会一直有一个user thread(以及user thread对应的THD)陪伴它。 Connection和Session概念 来自Stackoverflow的一个回答: A session is just a result of a successful conne ...
分类:
数据库 时间:
2021-03-17 14:12:26
阅读次数:
0
################### 前言 引用本地py文件出现红色波浪线,如下图: 原因 经过查询得知,vscode中的python插件默认使用的是pylint来做代码检查,因此需要对pylint做一些配置 解决方案 在setting.json中配置 "python.linting.enable ...
分类:
编程语言 时间:
2021-03-16 14:11:43
阅读次数:
0