
Java后端
Nishkata
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Intellij IDEA Select Opened File 快捷键好像没起作用
IDEA Select Opened File,定位到当前打开的文件,快捷键原创 2023-01-12 10:15:46 · 2514 阅读 · 0 评论 -
Tomcat HTTPS 访问出错:Bad Request This combination of host and port requires TLS.
原因:浏览器地址栏默认使用的协议是http解决方案:手动修改浏览器地址栏,将http协议改成https原创 2022-03-11 10:23:36 · 3797 阅读 · 1 评论 -
数据库表格 存储文件目录树
CREATE TABLE `mining_data_tree` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` char(255) COLLATE utf8mb4_unicode_ci NOT NULL, `parent` int(11) NOT NULL, `depth` int(11) NOT NULL, PRIMARY KEY (`name`,`parent`), UNIQUE KEY `mining_data_tree_id_ui原创 2021-08-10 17:08:30 · 334 阅读 · 0 评论 -
Spring遇坑日记2021年7月16日
如果实体类entity没有get/set方法则无法通过实体类获取GET请求参数原创 2021-07-16 09:20:39 · 118 阅读 · 0 评论 -
mybatis遇坑日记
自定义一个entity类的构造方法之后,需要再添加全字段的构造方法。否则出错。或者如果有需求还要再加上其他各种不同字段组合的构造方法?java.lang.IllegalArgumentException: argument type mismatch at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_281] at sun.reflect.NativeConstructorAccess原创 2021-07-16 07:43:00 · 211 阅读 · 0 评论