- 博客(14)
- 资源 (1)
- 收藏
- 关注
原创 Spring之ClassPathResource加载资源文件
Resource resource = new ClassPathResource("templates/testword.ftl");InputStream input = resource.getInputStream();
2021-04-07 15:07:58 591
转载 Gradle入门及SpringBoot项目构建
https://blog.csdn.net/weixin_40826349/article/details/96874172
2021-04-07 10:52:12 118
原创 mariadb 与mysql区别
mysql:driver驱动类为:com.mysql.jdbc.Driverurl为: jdbc:mysql://localhost:3306/testmariadbdriver驱动类为:org.mariadb.jdbc.Driverurl为:jdbc:mariadb://localhost:3306/test
2021-04-07 09:39:55 525
原创 springboot 配置文件上传大小限制
spring:servlet:multipart:max-request-size: 100MBmax-file-size: 100MB
2021-04-07 09:27:16 78
原创 DecimalFormat 对数字格式化操作
1、0new DecimalFormat("00.000").format(3.14) //结果:03.140new DecimalFormat("00.00").format(13.146) //结果:13.15new DecimalFormat("0.00").format(13.146) //结果:13.152、#new DecimalFormat("#.###").format(3.14) //结果: 3.14new DecimalFormat("##.###"...
2021-04-02 09:33:50 146
原创 .rp的文件打开
后缀为.rp的源文件用Axure RP 9打开,在发布中生成html文件后,再用chrome打开。(尝试在浏览器打不开)。Axure RP 9 下载地址:https://www.axure.com/downloadthanks?platform=pc 官网地址:https://www.axure.com/Publish ->Generate html files...
2021-03-30 11:17:41 19280
原创 学习记录lombok插件的安装和使用
实体类Student,添加三个属性,最后在类上添加@Data属性,这个注解可以帮我们在.class文件中生成类中所有属性的get/set方法、equals、canEqual、hashCode、toString方法等。在菜单栏点击View-->Tool Windows-->Structure,便可以看到类中所有的方法了,这些都是lombok帮我自动生成的。https://blog.csdn.net/a2267378/article/details/81180373注解@Retentio
2021-03-25 10:08:10 95
转载 错误记录 SpringBoot启动类
【错误信息】This application has no explicit mapping for /error, so you are seeing this as a fallback.Sat May 02 21:25:53 CST 2020There was an unexpected error (type=Not Found, status=404).No messag...
2020-05-03 14:28:21 138
原创 Thymeleaf语法详解总结
1.变量输出与字符串操作 th:text (在页面中输出值) th:value (将一个值放入input标签的value中)2.Thymeleaf内置对象 1.调用内置对象用# 2.大部分内置对象都以s结尾 ${#strings.isEmpty(key)} (判断字符串是否为空,如果为空返回true,否则...
2020-05-03 14:27:26 737
原创 错误记录
Error updating database. Cause: java.sql.SQLException: Column count doesn't match value count at row 1### The error may involve com.lzc.mapper.RegisterMapper.addRegister-Inline### The error occurre...
2020-04-24 19:58:56 158
原创 错误记录
严重: Servlet.service() for servlet [jsp] threw exceptionjavax.el.PropertyNotFoundException: 类型[com.lzc.pojo.Register]上找不到属性[status]少加了set/get方法
2020-04-24 16:49:53 190
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人