2023年12月24日
摘要: 报错:javax.el.ELException: Cannot convert [2023-11-14 22:35:34] of type [class java.lang.String] to [class java.util.Date] 问题分析:相应数据的类型不正确 bean层写的是 : pr 阅读全文
posted @ 2023-12-24 11:02 初晓臻 阅读(115) 评论(0) 推荐(0) 编辑
  2023年12月23日
摘要: Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingExcepti 阅读全文
posted @ 2023-12-23 20:27 初晓臻 阅读(42) 评论(0) 推荐(0) 编辑
  2023年10月10日
摘要: 1、String.getBytes方法:获取该编码格式的字符 在Java中,String的getBytes()方法是得到一个操作系统默认的编码格式的字节数组。这个表示在不同的OS下,返回的东西不一样。 String.getBytes(String decode)方法会根据指定的decode编码返回某 阅读全文
posted @ 2023-10-10 10:31 初晓臻 阅读(278) 评论(0) 推荐(0) 编辑
  2023年10月9日
摘要: Junit :测试 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies> 写在 阅读全文
posted @ 2023-10-09 22:10 初晓臻 阅读(6) 评论(0) 推荐(0) 编辑
  2023年10月6日
摘要: 第三方库:在mvn中央仓库(mvnrepository.com)中搜索Commons MathMaven Repository: Search/Browse/Explore (mvnrepository.com)将Apache Commons Math 依赖文本加到项目pom.xml中Maven编译 阅读全文
posted @ 2023-10-06 12:49 初晓臻 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 求最大公约数之 穷举法 mistake: because: 只允许在C99模式下使用‘for’循环初始化声明 solution:不在for()中初始化生命变量 阅读全文
posted @ 2023-10-06 11:00 初晓臻 阅读(288) 评论(0) 推荐(0) 编辑
  2023年8月31日
摘要: JDBC 逻辑整理初步之通用增删改查 DBUtil public class DBUtil { private String driver="com.mysql.cj.jdbc.Driver"; private String url="jdbc:mysql://localhost:3306/stud 阅读全文
posted @ 2023-08-31 11:13 初晓臻 阅读(10) 评论(0) 推荐(0) 编辑
摘要: java.sql.SQLSyntaxErrorException: Unknown column 'stisex' in 'field list' 问题: 阅读全文
posted @ 2023-08-31 07:59 初晓臻 阅读(14) 评论(0) 推荐(0) 编辑
  2023年8月30日
摘要: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'studentService': Unsatisfied dependency expressed thr 阅读全文
posted @ 2023-08-30 16:02 初晓臻 阅读(122) 评论(0) 推荐(0) 编辑
  2023年7月6日
摘要: controller: package com.ws.byd.bmgl.bmzdpz.controller; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.servlet.htt 阅读全文
posted @ 2023-07-06 19:18 初晓臻 阅读(18) 评论(0) 推荐(0) 编辑