
踩坑日记
学习中遇到的问题解决
xc979906570
对代码有洁癖,对架构有执念,对技术有追求
展开
-
java fx 报错 java.lang.instrument ASSERTION FAILED ***: “!errorOutstanding“ with message transform
在javafx中遇到的错误在fxml中通过了fxcontroller绑定了控制器在控制的controller里面使用了FXMLLoader.load获取这个fxml文件出现报错。原创 2022-07-30 22:10:21 · 11154 阅读 · 1 评论 -
springboot整合shiro 报错
问题描述springboot整合shiro报错 @Bean public SessionsSecurityManager securityManager() { DefaultWebSecurityManager securityManager = new DefaultWebSecurityManager(); securityManager.setRealm(userRealm()); // 我引入的是 s原创 2022-03-28 19:36:01 · 909 阅读 · 0 评论 -
vuepress RangeError: Maximum call stack size exceeded pageMeta is not defined
问题描述在vercel构建项目时报错vuepress 项目在构建时报错RangeError: Maximum call stack size exceededReferenceError: pageMeta is not definedRangeError: Maximum call stack size exceeded at formatError (internal/util/inspect.js:1177:20) at formatRaw (internal/util/in原创 2022-03-27 15:17:25 · 410 阅读 · 0 评论 -
关于layui laydate的日历控件无法正常弹出的问题
问题描述:在使用layui laydate的日历控件时,第一次能正常弹出,当我们点击查询提交表单后就无法再次正常弹出的问题。只在js中渲染了一次查询重载表格之后点击日历选择框无法正常弹出原因分析:原因可能因为点击查询后,数据表格重载数据的日历控件需要重新渲染,而没有处理便无法正常弹出解决方案:在表格渲染的函数中加入回调函数,成功后,自动重新渲染laydate...原创 2022-02-13 16:53:49 · 2241 阅读 · 0 评论 -
VMware下centos7配置静态ip并解决ping不通百度的问题
记录一下浪费了个把小时的问题vmware虚拟机centos7设置了静态ip后无法ping通百度的问题使用dhcp自动分配的可以使用正常访问按照网上一系列教程都没解决后来发现是校园网的问题,可能那个ip地址有人使用了吧,换成自己的手机热点即可要是不行按照下面教程改吧教程都不行直接重新安装虚拟机吧...原创 2021-10-04 11:20:11 · 405 阅读 · 1 评论 -
layui数据表格的头部工具栏中添加下拉菜单值无法显示
问题描述:在layui的数据表格的头部工具栏中我的下拉菜单的选项无法显示结果显示 头部工具栏无法正常显示下拉选择框原因分析:原因是由于这个class影响的,里面放按钮和其它东西没有影响,这个下拉选择框会出现问题<div class="layui-btn-container">解决方案:只需要把这个class删除即可结果就能正常显示了...原创 2022-01-21 22:01:01 · 1031 阅读 · 0 评论 -
thymeleaf 取后台springboot参数引号变成"
问题描述:thymeleaf中无法正常解析字符串tomcat 放在application域中 下面不加引号直接报错,无法解析那个&结果原因分析:在thymeleaf 中的 这里js中取值不能直接用两个中括号取值解决方案:使用下面的方法解决参考网上的还有的其它解决方法参考大佬的解决方案地址ar value = [(${data.scriptValue})];//orvar value = [# th:utext="${data.scriptValue}"/]; /原创 2022-01-19 21:33:56 · 1143 阅读 · 0 评论 -
springboot中listener和interceptor中无法注入services和dao等其它bean
问题描述:在我们的监听器和拦截器类中使用@Resource自动注入dao时一直为空@WebListener@Componentpublic class BootServiceListener implements ServletContextListener { @Resource private SyncUploadRecordDao syncUploadRecordDao; @Override public void contextInitialized(Se原创 2022-01-18 21:58:15 · 1823 阅读 · 1 评论 -
[Circular view path [abc]: would dispatch back to the current handler URL
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Circular view path [abc]: would dispatch back to the current handler URL [/abc] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecif原创 2021-10-26 22:27:48 · 266 阅读 · 0 评论