摘要:
原文 :https://blog.csdn.net/weixin_42245375/article/details/102813200 一、常见数据库驱动 1.比较(1)Statement操作数据库:增删改:executeUpdate()查询:executeQuery(); (2)PreparedS 阅读全文
摘要:
程序实现ContentHandler接口并且使用 setContentHandler 方法,向 SAX 解析器注册一个实例。解析器将使用该实例报告与基本文档相关的事件,如启动和终止元素与字符数据。 此接口中的事件顺序非常重要,它本身可镜像文档中信息的顺序。例如,在 startElement 事件与相 阅读全文
摘要:
参考文档: 官网:https://docs.spring.io/spring-data/jdbc/docs/1.0.6.RELEASE/reference/html/ https://blog.csdn.net/m0_37862405/article/details/111238402?utm_me 阅读全文
摘要:
Getting Started Reference Documentation For further reference, please consider the following sections: Official Apache Maven documentation Spring Boot 阅读全文
摘要:
https://www.jianshu.com/p/2543c71a8e45 https://blog.csdn.net/qq_42981242/article/details/110671813 Lombok注解的使用 POJO类常用注解: @Getter/@Setter: 作用类上,生成所有成员 阅读全文
摘要:
Spring Data Jpa的使用 : https://www.jianshu.com/p/c23c82a8fcfc SpringData学习:https://blog.csdn.net/lw_power/category_6210284.html 阅读全文
摘要:
参考:https://blog.csdn.net/baidu_39298625/article/details/98102453 1、创建项目 下一步: Web下勾选Spring Web、Spring Web Services Template Englines勾选Thymeleaf SQL勾选:M 阅读全文
摘要:
一、什么是bootstrap? bootstrap是一个前端开发时使用的框架。前端开发主要写HTML5、css3、JavaScript。而bootstrap框架主要为我们提供两个最重要的文件:bootstrap.min.css和bootstrap.min.js。为什么没有.min.html呢?不知道 阅读全文
摘要:
IntelliJ Idea 常用快捷键列表 Ctrl+Shift + Enter,语句完成“!”,否定完成,输入表达式时按 “!”键Ctrl+E,最近的文件Ctrl+Shift+E,最近更改的文件Shift+Click,可以关闭文件Ctrl+[ OR ],可以跑到大括号的开头与结尾Ctrl+F12, 阅读全文
摘要:
窗口:Stage。 首先是写两个可以独立显示的界面(Main.java、Second.java)。其中Main.java 使用的FXML文件是Main.fxml;Second.java 使用的FXML文件是Second.fxml;Main.java对应的控制类为MainController.java 阅读全文