- 博客(17)
- 资源 (1)
- 收藏
- 关注
原创 TypeScript入门指南
这里主要分享一些TypeScript相关的学习资源和开源优秀项目这里会收集一些我比较常用的TypeScript学习网站TypeScript 中文文档官方文档链接TypeScript 使用指南手册对中文文档做了一些补充链接TypeScript 入门教程从 JavaScript 程序员的角度总结思考,循序渐进的理解 TypeScript。仓库地址千古前端图文教程Web 前端入门到进阶知识库。仓库地址一款用于构建用户界面的 JavaScript 框架。它基于标准 HTML、CSS 和 JavaScript 构建,
2022-12-04 22:54:50 704 1
原创 method.invoke导致递归死循环,at com.sun.proxy.$Proxy0.add(Unknown Source)
今天在用java反射实现方法拦截的时候出现递归死循环的问题,报错信息如下对比源代码,差别如下,在这个invoke方法里面,proxy会再次调用这个invoke方法,无限循环,导致栈溢出。视频链接:https://www.youtube.com/watch?v=8zt_HftX-4g@Slf4jpublic class ArithmeticCalculateProxy { private ArithmeticCalculate target; public Ar..
2020-05-24 23:21:53 4169 2
原创 navicat连接linux的MySQL服务器出现Access denied for user
参考了文章:https://blog.csdn.net/lhl1124281072/article/details/80277163在本地用搭建了一台linux虚拟机,Tomcat的服务可以正常访问,但是连接MySQL服务器的时候出现如下报错Access denied for user 'root'@'192.168.91.1' (using password: YES)在linux上MySQL是可以正常登陆使用的,看样子是没有权限,做了如下修改mysql> use sys.
2020-05-17 12:28:30 1063
原创 TypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffe
D:\code\JavaDance>gitbook initinfo: create SUMMARY.mdTypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received an ...
2020-04-30 20:32:47 17096 3
原创 07. 重建二叉树(C语言)
/** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ struct TreeNode* build(int* preorder...
2020-04-21 00:44:29 421
原创 整数转罗马数字(C语言版)
罗马数字包含以下七种字符:I,V,X,L,C,D和M。字符 数值I 1V 5X 10L 50C 100D 500M 1000例如, 罗马数字 2 写做II,即为两个并列的 1。1...
2019-10-07 21:55:15 1722
原创 cannot find column's cache for so you cannot used class com.baomidou.mybatisplus.core.conditions.que
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression 'ew.sqlSegment != null and ew.sqlSegment != '' and ew.nonEmptyOf...
2019-02-26 10:50:38 8415 2
原创 nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in
org.springframework.jdbc.BadSqlGrammarException: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manua...
2018-12-17 20:36:23 4319
原创 使用layUI提交表单的时候,ajax返回整个html
一开始我的请求路径为page/container/add.html,因为要做进一步的判读,没有使用layUI的lay-submit和action按钮,而是参考官网上做了一个监听提交的,简化后的核心代码如下,采用ajax的get请求提交,但是不管怎么提交都还是返回了add.html这个页面的HTML代码。layui.use('form', function(){ var for...
2018-12-15 21:36:24 1826
原创 js前端double无法显示,long精度丢失,layUI数据表格
一开始我是以对象形式把数据从后台返回到前端,追踪发现从后台返回了有两条数据,但是前端只显示了一条数据,如图。{"code":0,"count":2,"data":[{"boxId":1069786974417637377,"containerId":1069786974417637377,"height":0.0,"id":"10697869744176
2018-12-14 21:23:32 1733 1
原创 layUI中使用layer.open,在content打开数据表格,获取值并返回
在layUI编写的页面中,遇到这么一种情况,从一个页面中使用layer.open打开一个新窗口,新窗口中是一个数据表格,现在需要选中数据表格中的一列并获取它的值,以便下面这个选择按钮可以使用这个值进行后一步的操作。如简单的选中之后显示选中数据的id。首先在当前原始页面上,定义一个工具条<button class="layui-btn" data-type="simulate...
2018-12-14 16:31:54 15100 4
原创 Application中没有没有扫描相应的包导致的NoClassDefFoundError
org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: Could not initialize class top.system.support.factory.LogTaskFactory...
2018-12-09 18:21:51 357
原创 LEETCODE 60. 第k个排列
public class LT60{ public static String getPermutation(int n, int k) { LinkedList<Integer> list = new LinkedList<Integer>(); for(int i = 1 ; i <= n ; i++){ list.add(i); ...
2018-06-25 17:40:26 336
原创 Line 10 in XML document from ServletContext resource [/WEB-INF/spring-servlet.xml] is invalid; neste
Line 10 in XML document from ServletContext resource [/WEB-INF/spring-servlet.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 10; columnNumber: 31; cvc-complex-type.2.4...
2018-06-19 16:14:47 4380
原创 39. 组合总和
给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。candidates 中的数字可以无限制重复被选取。说明:所有数字(包括 target)都是正整数。解集不能包含重复的组合。 public class LT39 { public static class Tree { int val; // ...
2018-06-13 20:32:44 397
原创 Error creating bean with name 'dynamicTask': query did not return a unique result: 2
经检查发现数据库中有两条task_id为timeTask的记录造成了不唯一冲突,删除其中一条即可org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dynamicTask': Injection of resource dependencies failed; neste...
2018-04-18 16:15:52 988
原创 SAX2 driver class org.apache.xerces.parsers.SAXParser not found
java.io.IOException: SAX2 driver class org.apache.xerces.parsers.SAXParser not found at org.apache.batik.dom.util.SAXDocumentFactory.createDocument(Unknown Source) at org.apache.batik.dom.util.SAXDo
2017-12-05 10:32:47 3042
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人