摘要: 题目链接:https://leetcode-cn.com/problems/reverse-vowels-of-a-string/ 代码: class Solution { public String reverseVowels(String s) { Character[] c = {'a','e 阅读全文
posted @ 2019-11-15 10:46 饶一一 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 一、什么是跨域 跨域是浏览器对JavaScript同源策略的限制 二、什么情况下会产生跨域 域名不同 wwww.baidu.com www.jd.com 域名相同,访问的端口不同 wwww.baidu.com:8080 wwww.baidu.com:8081 一级域名相同,二级域名不用 map.ba 阅读全文
posted @ 2019-11-14 20:00 饶一一 阅读(1255) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://leetcode-cn.com/problems/sum-of-square-numbers/submissions/ 代码: class Solution { public boolean judgeSquareSum(int c) { long a=0; long b= 阅读全文
posted @ 2019-11-12 09:51 饶一一 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/ 代码: class Solution { public int[] twoSum(int[] numbers, int target) { int i = 阅读全文
posted @ 2019-11-12 09:13 饶一一 阅读(97) 评论(0) 推荐(0) 编辑
摘要: com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused: connect at com.sun.jersey.client.apache4.ApacheHttpCl 阅读全文
posted @ 2019-11-10 10:32 饶一一 阅读(7312) 评论(0) 推荐(0) 编辑
摘要: hystrix的熔断时间默认为1秒,这对于一个要部署的服务器来说太短了,所以可以把这个时间设置大一点 这个时间设置在yml中没有提示,下面是设置的代码: hystrix: command: default: execution: isolation: thread: timeoutInMillise 阅读全文
posted @ 2019-11-08 10:42 饶一一 阅读(5203) 评论(0) 推荐(0) 编辑
摘要: 在向Oracle数据库里面插入数据时发生了以下错误 ; ]; ORA-02291: 违反完整约束条件 (SSM.SYS_C0011830) - 未找到父项关键字 ; nested exception is java.sql.SQLIntegrityConstraintViolationExcepti 阅读全文
posted @ 2019-11-05 20:11 饶一一 阅读(5097) 评论(0) 推荐(0) 编辑
摘要: 1.先引入secrity的标签库 <%@ taglib prefix="security" uri="http://www.springframework.org/security/tags" %> 2.获取值 <security:authentication property="principal 阅读全文
posted @ 2019-11-05 15:00 饶一一 阅读(894) 评论(0) 推荐(0) 编辑
摘要: 2019-10-31 09:04:55,973 9803 [bio-9090-exec-2] DEBUG equest.HttpSessionRequestCache - DefaultSavedRequest added to Session: DefaultSavedRequest[http:/ 阅读全文
posted @ 2019-10-31 09:22 饶一一 阅读(5664) 评论(1) 推荐(0) 编辑
摘要: 上面说:Caused by: java.lang.IllegalArgumentException: login.jsp?logout isn't a valid redirect URL 解决方法: 在路径前面加上/就行了,以后的/能不省就别省 阅读全文
posted @ 2019-10-30 23:23 饶一一 阅读(1106) 评论(0) 推荐(0) 编辑