错误1:selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command.错误2:同一段脚本比如超级计算器,通过appi... ...
分类:
移动开发 时间:
2020-04-28 18:53:39
阅读次数:
197
1,加入依赖 2,通过自定义配置文件配置数据源信息 3,创建配置类 package com.bdqn.springbootjdbc.config; import com.alibaba.druid.pool.DruidDataSource; import org.springframework.be ...
分类:
数据库 时间:
2020-04-28 17:04:14
阅读次数:
446
第一步:制作一键清理系统垃bat文件。在电脑桌面新建一个txt文本文档,将以下内容复制到txt文本文档里保存 @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive% ...
分类:
其他好文 时间:
2020-04-28 13:00:07
阅读次数:
81
1. 修改本地hosts文件 windows系统的hosts文件的位置如下:C:\Windows\System32\drivers\etc\hosts mac/linux系统的hosts文件的位置如下:/etc/hosts 2. 增加http://github.global.ssl.fastly.n ...
分类:
其他好文 时间:
2020-04-28 12:29:12
阅读次数:
119
建造者模式 将一个复杂的构建与它的表示分离,使得同样的构建过程可以创建不同的表示。 以下情况适合使用呢建造者模式 .当创造复杂对象的算法一个独立于该对象的组成部分以及它们的装配方式时。 .当构造过程必须允许构造的对象有不同表示时。 Builder pattern separates the cons ...
分类:
编程语言 时间:
2020-04-28 00:15:15
阅读次数:
56
package rjcs; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefo ...
分类:
编程语言 时间:
2020-04-22 13:38:10
阅读次数:
80
package jkcs; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa ...
分类:
编程语言 时间:
2020-04-22 13:23:35
阅读次数:
125
日常搭建springboot项目,使用springboot自带的日志框架即可,spirngboot自带的日志框架为:logback。 logback使用 maven依赖导入: <dependency> <groupId>org.springframework.boot</groupId> <arti ...
分类:
编程语言 时间:
2020-04-21 15:36:06
阅读次数:
79
今天主要从事JDBC连接MySQL try { Class.forName("com.mysql.jdbc.Driver"); Log.v(TAG, "加载JDBC驱动成功"); } catch (ClassNotFoundException e) { Log.e(TAG, "加载JDBC驱动失败" ...
分类:
其他好文 时间:
2020-04-20 23:50:32
阅读次数:
70
By Pixy https://stackoverflow.com/questions/24396644/programmatically-mount-a-microsoft-virtual-hard-drive-vhd This is an old question but it still ha ...
分类:
其他好文 时间:
2020-04-20 12:11:18
阅读次数:
69