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