java
玄月无疆
这个作者很懒,什么都没留下…
展开
-
web-thymeleaf开发错误集合
1.找不到静态页面Error resolving template [table/editable_table], template might not exist or might not be accessible by any of the configured Template Resolversorg.thymeleaf.exceptions.TemplateInputException: Error resolving template [table/editable_table], tem原创 2021-04-27 09:20:48 · 99 阅读 · 0 评论 -
java编程错误汇总解决
1、java.lang.IndexOutOfBoundsException:错误索引超出边界异常,比如list中没有数据 你去取list[0] 没有这条数据 就汇报这个错误或者说你list.size()是5 你取list[6] 也会报这个错误2、java.lang.SecurityException: Prohibited package name: java.com.test.demo01方法首先对类名进行了检查,发现以java作为一级包名,则抛出安全异常:禁止使用的包名。换点java作为包名原创 2021-04-22 08:49:33 · 209 阅读 · 0 评论 -
报错org.thymeleaf.exceptions.TemplateInputException: Error resolving template解决方案
在使用springboot+thymeleaf写程序的时候,一直报错org.thymeleaf.exceptions.TemplateInputException: Error resolving template硬是搞了整整一天才解决,因为自己踩过坑了,所以,在这里,本人给出目前我所搜集到的所有报这个错的情况的解决方案。org.thymeleaf.exceptions.TemplateInputException: Error resolving template "xxx/xxx", template原创 2021-04-17 11:46:30 · 430 阅读 · 0 评论 -
解析xml文档之Jsoup
1.导入jspup.jar包2.创建jsoup对象public class JsoupDemo01 { public static void main(String[] args) throws IOException { //1.获取xml文档 String path = JsoupDemo01.class.getClassLoader().getResource("student.xml").getPath(); //2、获取dom tree原创 2021-03-20 14:00:22 · 148 阅读 · 0 评论 -
swagger-api嵌入项目测试接口
1.添加依赖<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version></dependency><dependency> <groupId>com.github.xiaoymin<原创 2021-02-28 14:36:30 · 172 阅读 · 0 评论 -
简版JDBC链接数据库获取数据
简版JDBC链接数据库获取数据1.导入jar包百度云网盘资源-mysql-connector-java-5.1.37-bin.jar2.注册驱动3.获取数据库链接对象4.定义sql语句5.获取执行语句对象6.执行语句7.处理结果8.释放资源 public static void main(String[] args) throws ClassNotFoundException, SQLException { //1.导入jar包 //2.注册驱动原创 2021-02-28 14:27:41 · 158 阅读 · 0 评论 -
java开发-jdk工具包
一、jdk开发环境图示二、工具包详解1.需掌握工具包类java:原创 2020-12-03 09:27:25 · 241 阅读 · 0 评论