码迷,mamicode.com
首页 >  
搜索关键字:except    ( 6601个结果
springboot启动配置原理以及自定义starter
目录: 1、springboot启动配置原理 几个重要的事件回调机制: 配置在META-INF/spring.factories ApplicationContextInitializer SpringApplicationRunListener 只需要放在ioc容器中 ApplicationRun ...
分类:编程语言   时间:2020-12-18 13:14:57    阅读次数:3
hdfs的相关api
连接hdfs 根据hdfs的版本引用相关的hdfs依赖 <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-client --> <dependency> <groupId>org.apache.hadoop</group ...
分类:Windows程序   时间:2020-12-18 13:06:56    阅读次数:4
UI自动化测试常用操作函数(1)
class Utils: #对可输入的元素执行点击,清理和输入 @classmethod def send_input(cls,ele,value): ele.click() try: ele.clear() except: pass finally: ele.send_keys(value) # ...
分类:其他好文   时间:2020-12-17 13:04:31    阅读次数:5
JAVA网络编程URL编解码
import java.net.URLDecoder; import java.net.URLEncoder; public class CodeDemo { public static void main(String[] args) throws Exception { String keyWo ...
分类:编程语言   时间:2020-12-17 12:14:31    阅读次数:2
填坑系列之OpenFeign
前提 在fallback时,发现重复注册了两次同一uri,报错: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map ...
分类:其他好文   时间:2020-12-16 12:42:34    阅读次数:2
日期时间相关类
1 package classwork8; 2 3 import java.util.Date; 4 5 public class DateTest { 6 7 public static void main(String[] args) { 8 Date currentDate = new Dat ...
分类:其他好文   时间:2020-12-15 12:38:00    阅读次数:4
mybatis if test 采坑记
前言 最近遇到的一个关于mybatis的xml条件判断的问题,平时写的都是以判断空属性是否为空,例如: <if test="type!=null and type !=''"> and status = 1 </if> 所以在这一块并没有足够的重视。 正文 最近刚好要写一个与上边不一样的写法,但是还 ...
分类:其他好文   时间:2020-12-14 13:52:25    阅读次数:5
异常:java.sql.SQLException: The server time zone value '?й???????' is unrecognized or represents more
异常错误:java.sql.SQLException: The server time zone value '?й???????' is unrecognized or represents more than one time zone. You must configure either th ...
分类:数据库   时间:2020-12-14 13:04:37    阅读次数:4
python测试开发django(12)--ORM查询表结果
前言 django查询数据库的方法很多,不同的方法返回的结果也不太一样,本篇详细讲解关于查询的13个方法 返回对象是对象列表的:all(),filter(),exclude(),order_by(),reverse(),values(),values_list(),distinct() 返回结果是对 ...
分类:编程语言   时间:2020-12-14 12:54:22    阅读次数:5
android studio 导入外部库文件,以及将项目中module变成library引用依赖
一:导入如百度地图等的外部类。 步骤:1.首先 将androidstudio项目显示切换到 project 状态显示项目 2.然后添加.jar文件,将所有的.jar文件放入libs文件夹内(libs文件夹就在项目文件夹下),然后在引入的.jar文件上右键然后点击 Add As Library... ...
分类:移动开发   时间:2020-12-10 10:41:40    阅读次数:8
6601条   上一页 1 ... 10 11 12 13 14 ... 661 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!