- 博客(15)
- 收藏
- 关注
原创 Fast Report 报表对数值数据列的四舍五入问题与合计问题
2. 所有数值类型的数据列需要在SQL中手动转换为字符串(使用 CAST(xxx as VARCHAR)),再传给 fast report,否则报表可能会报错:“无法将 null 转换为 XXX,请使用 DbNull ”的类似错误!3. 如果需要在报表中对数值数据(注意此时的数值数据对报表来说是字符串类型的)进行合计操作,需要在合计表达式中对字符串数据进行转换:ToDouble(数据字段),才可以,否则合计操作会是对这列的数据进行字符串拼接!
2024-07-04 11:31:39 408
原创 【解决】 org.apache.ibatis.type.TypeException: Error setting non null for parameter #35 with JdbcType
原因: 在 mapper 文件里对写好的 固定日期 替换为 #{beginDate} 时,选中时遗漏 ' 号!如上图,去掉之后,重启项目,问题解决。
2023-05-27 12:20:42 405
原创 【解决】 Uncaught (in promise) RangeError: Maximum call stack size exceeded
解决 Uncaught (in promise) RangeError: Maximum call stack size exceeded。原因:name: 'applicantForm' 使用了在 componets 中存在的一个组件的名字,改名后错误排除。
2023-04-13 23:37:31 5284
原创 解决 Error: error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypt
【代码】解决 Error: error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypt。
2023-04-03 03:13:19 1511
原创 解决:Cannot call sendError() after the response has been committed
Cannot call sendError() after the response has been committed,使用IDEA 的generator工具自动生成了 doGet() 和 doPost() 方法,删掉super.doXXX(req,resp)即可。
2022-12-10 02:15:03 406
原创 Spring+SpringMVC+Mybatis整合开发(超级详细)web.xml配置补充(原文版权CSDN“小菜鸟的春天”,侵删)
Spring+SpringMVC+Mybatis整合开发(超级详细)
2022-08-10 10:39:10 475 3
原创 【已解决】java.lang.NoClassDefFoundError: jakarta/servlet/jsp/jstl/core/ConditionalTagSupport
问题:Tomcat10 报错 java.lang.NoClassDefFoundError: jakarta/servlet/jsp/jstl/core/ConditionalTagSupport原因:Tomcat10 需要 jakarta.servlet.jsp.jstl-api-2.0.0.jar解决步骤:1.下载 jakarta.servlet.jsp.jstl-api-2.0.0.jarhttps://search.maven.org/artifact/jakarta.servlet.jsp.jst
2022-06-20 18:01:53 4419 1
原创 【已解决】Tomcat 运行报错: XXX has been compiled by a more recent version of the Java Runtime
问题:jakarta.servlet.ServletException: java.lang.UnsupportedClassVersionError: com/companyabc/xxw/demo/SimpleBean has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes cl
2022-05-30 00:56:27 2030
原创 【解决】无法为JSP编译类: Enumeration cannot be resolved to a variable
问题:JSP文件:[/Test_request/src/request_demo_03.jsp] 的第 [16] 行发生了一个错误Enumeration cannot be resolved to a variable13: request.setCharacterEncoding("GBK");14: %>15: <%16: Enumeration enum = request.getHeaderNames();17: while(en
2022-05-26 02:53:30 1686
原创 【5】【心得】java 命令运行java程序 没有任何反应 编译没有报错
问题:java 命令运行java程序 没有任何反应 编译没有报错原因:构造方法前添加了 void ,个人猜测编译器自动添加了无参构造方法,运行时虚拟机自动调用了无参构造方法进行初始化,因此运行没有产生可见任何效果,便自动退出了。解决步骤:删掉 void ,重新编译、运行。...
2022-05-03 02:33:54 4473 2
原创 【4】【解决】java.sql.SQLException: Access denied for user ‘root‘@‘localhost‘
问题:java.sql.SQLException: Access denied for user 'root'@'localhost'解决步骤:参考(侵删)
2022-04-29 21:22:34 1456
原创 【3】【解决】Client does not support authentication protocol requested by server;
问题:Client does not support authentication protocol requested by server; consider upgrading MySQL client解决步骤:sudo apt-get install mysql-client未完待续。。。
2022-04-29 17:06:06 719
原创 【2】【解决】Communications link failure due to underlying exception
问题:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)或:原因:mysql 没安装好。解决步骤:sudo apt-get install mysql-server
2022-04-29 16:32:33 693
原创 【1】【解决】No suitable driver found for jdbc:mysql
问题:No suitable driver found for jdbc:mysql:localhost:3306/x原因: URL写错,缺少 // ,private String URL = "jdbc:mysql:localhost:3306/x";解决步骤:private String URL = "jdbc:mysql://localhost:3306/x";参考(侵删): 编程人生(1) 使用mysql时遇到**No Suitable Driver Found For Jdb...
2022-04-29 16:22:16 1605
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人