java
SpringBoot操作XWPFTable(4)设置字体大小、加粗、对齐方式、边框线、背景颜色
0.前言 前面的文章介绍了单元格合并的操作,这篇文章简单介绍一下设置字体大小、加粗、对齐方式、边框线 阅读更多…
java
spring boot的application.yml和application-dev.yml
开发SpringBoot应用的时候,通常程序需要在测试环境测试成功后才会上线到生产环境。而测试环境和 阅读更多…
常见报错
Field studentsMapper in site.longkui.app.service.StudentsService required a bean of type ‘site.longkui.app.mapper.StudentsMapper’ that could not be found.
某日新创建spring boot项目后启动项目报错: 这个错误是因为我们没有加上MapperScan 阅读更多…
常见报错
Resolved [org.springframework.http.converter.HttpMessageNotWritableException: Could not write JSON:
调试springboot项目,返回数据的时候报错: Resolved [org.springfram 阅读更多…
常见报错
org.thymeleaf.exceptions.TemplateInputException: Error resolving template [students/getList], template might not exist or might not be accessible by any of the configured Template Resolvers
创建调试springboot项目后,然后访问一个接口,控制台开始报错: 这个问题的主要原因是Cont 阅读更多…
常见报错
Project ‘org.springframework.boot:spring-boot-starter-parent:2.7.7’ not found
某日构建springboot项目,构建完毕以后发现下面这样 然后打开pom文件,发现springbo 阅读更多…
java
JAVA中的Xms、Xmx、MetaspaceSize、MaxMetaspaceSize都是什么意思?
某天需要修改一个web服务器的配置文件,看到了下面这样一行配置 Xms:是JVM启动申请的初始Hea 阅读更多…
java
There is no getter for property named ‘xxxxx’ in ‘class com.xxx.xx.xx.xxxx'”,
0.背景 SpringMVC架构,使用mybatis执行insert语句,然后开始报错: org.m 阅读更多…