模拟一个简单的字符串加密工具类 原理: 异或^的使用: int i; byte m; i ^ m ^ m == i;//true package com.dwz.classLoader.chapter3; public class SimpleEncrypt { private final stat ...
分类:
其他好文 时间:
2020-01-16 18:52:23
阅读次数:
62
timed out and no fallback 这个错误基本是出现在Hystrix熔断器,熔断器的作用是判断该服务能不能通,如果通了就不管了,调用在指定时间内超时时,就会通过熔断器进行错误返回。 一般设置如下配置的其中一个即可: 1、把时间设长 这里设置5秒 hystrix.command.de ...
分类:
其他好文 时间:
2020-01-16 18:46:08
阅读次数:
194
今天使用jenkins构建时,报以下错误 [ERROR] Failed to execute goal on project saas20: Could not resolve dependencies for project com.ipower365.saas:saas20:war:0.0.1- ...
分类:
Web程序 时间:
2020-01-16 17:22:00
阅读次数:
597
下面代码报空指针 with `__all_dim__` as ( select * from ( select from_unixtime(unix_timestamp(`__bts__`) -1,'yyyy-MM-dd HH:mm:ss') as `__bts__` from ( select c ...
分类:
数据库 时间:
2020-01-16 14:12:34
阅读次数:
226
引入jar包的方式 1.通过 File -> Project Structure -> Modules -> Dependencies 直接将所需的jar包或者文件夹引入; 2.先在 File -> Project Structure -> Libraries 中创建好Libraries,再通过 F ...
分类:
编程语言 时间:
2020-01-15 21:12:39
阅读次数:
68
原文地址https://linux.cn/article-5975-1.html # 需要被访问的NAT内的服务器:homeserver_user@homeserver # 中继服务器:relayserver_user@relayserver 1.根据文章中第一步:在Linux上设置了反向ssh隧道 ...
分类:
系统相关 时间:
2020-01-15 20:05:07
阅读次数:
111
启动springboot的时候莫名其妙出现这个错误,我properties里面也没配置数据源啥的,但就是出现这个错误 解决方法: 在启动类上加@SpringBootApplication(exclude= {DataSourceAutoConfiguration.class}) 即在@SpringB ...
分类:
Web程序 时间:
2020-01-15 19:21:45
阅读次数:
90
问题描述:tomcat点击startup.bat出现命令行闪退的情况 打开startup.bat,在第一行加入 SET JAVA_HOME=D:\jdk\jdk1.8.0_121【jdk路径】 SET TOMCAT_HOME=D:\apache-tomcat-8.5.29\apache-tomcat ...
分类:
其他好文 时间:
2020-01-15 00:09:03
阅读次数:
192
这个问题,困扰了我一天,终于解决, 问题的根本就是 Android studio 的 SDK Build-Tools 与工程所需的不一致。具体讲解如下: 具体解决方案: 1.既然是版本问题,那就的先去了解自己的电脑安装的SDK工具版本,点开SDK Manager图标,然后选中 Updates 就可以 ...
分类:
移动开发 时间:
2020-01-14 20:21:13
阅读次数:
82
错误信息: Clone failed RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function. The remote end hung up unexpectedly early EOF index-pack f ...
分类:
Web程序 时间:
2020-01-14 14:45:41
阅读次数:
211