-
Spring Boot 报错 the request was rejected because no multipart boundary was found
错误信息 the request was rejected because no multipart boundary was found org.spri
2024-03-25, Views: 1121 , Topics: Spring Boot
-
Spring Boot 3 Thymeleaf ctx 对象
ctx Thymeleaf中提供的#ctx是WebEngineContext对象。 <p th:text="${#ctx}"></p>
2024-03-22, Views: 353 , Topics: Spring Boot Thymeleaf
-
Spring Boot 3 Thymeleaf 获取 HTTP 状态码
ctx Thymeleaf提供了#ctx可以获取Status Code。 思路 通过ctx获取到HttpServletResponse就能获取状态码了。 代码
2024-03-21, Views: 378 , Topics: Spring Boot Thymeleaf
-
Spring Boot 3 Invalid return type for async method (only Future and void supported): class java.lang.Boolean
错误信息 Invalid return type for async method (only Future and void supported): clas
2024-03-20, Views: 799 , Topics: Spring Boot
-
Spring Boot 3.2 启用虚拟线程后 ThreadPoolTaskScheduler 报错
错误信息 *************************** APPLICATION FAILED TO START *******************
2024-03-19, Views: 670 , Topics: Spring Boot 虚拟线程
-
Spring Boot 3 自动加载配置类新方式
说明 从Spring Boot 2.7开始,原先的自动加载方式标记为过时,Spring Boot 3中原先的方式被移除,无法通过原先的方式加载自定义自动配置类。
2024-03-18, Views: 489 , Topics: Spring Boot
-
PostgreSQL 16 编译安装
说明 以CentOS 8为例。 安装依赖 libxslt yum install libxslt-devel readline yum install readline-devel zlib y
2024-03-15, Views: 854 , Topics: PostgreSQL
-
PostgreSQL 删除数据库时报错 ERROR: database "test" is being accessed by other users
错误信息 查询出错 (7): ERROR: database "test" is being accessed by other users DETAIL: T
2024-03-14, Views: 478 , Topics: PostgreSQL
-
Flowable 工作流集成到 Spring Boot 工程
添加依赖 全部功能 包含所有Flowable引擎的功能:Process、CMMN、DMN、IDM。 <dependency> <gro
2024-03-13, Views: 481 , Topics: Flowable Spring Boot
-
Flowable 配置不同数据库 Schema 做到数据隔离
需求 后端服务使用了PostgreSQL,有自己的数据库,不想让Flowable的数据库在业务的数据库中。 实现 使用PostgreSQL的不同Schema,但
2024-03-12, Views: 710 , Topics: Flowable Spring Boot
-
Flowable 配置单独数据库
环境 Spring Boot 3、Flowable 7。 代码 yaml 配置 flowable: datasource: url: jdbc:po
2024-03-11, Views: 575 , Topics: Flowable Spring Boot
-
Flowable UI 建模工具搭建
Docker 说明 Flowable 7商业化之后不再提供UI,需要使用他的在线网站,不但需要注册登录,而且商用30天试用。 拉取镜像 docker pull
2024-03-08, Views: 712 , Topics: Flowable
-
Flowable 打印 SQL 语句
配置 logging: level: org.flowable.engine.impl.persistence.entity.*: debug
2024-03-07, Views: 402 , Topics: Flowable
-
Vuetify v-data-table 去掉底部分页
需求 数据需要全部展示,无需底部的分页操作栏。 v-data-table 使用bottom的插槽,放一个空节点即可。 <v-data-table :h
2024-03-05, Views: 445 , Topics: Vuetify
-
Vuetify 分辨率
目录 设备 含义 编码 分辨率 手机 Extra Small xs <600px 平板 Small sm 600px~960px 笔记
2024-03-01, Views: 485 , Topics: Vuetify
-
Vuetify 设置组件间间隔
gap 使用g <div class="d-flex flex-column ga-5"> <p>文字1</p>
2024-02-29, Views: 324 , Topics: Vuetify
-
Vuetify 不同分辨率下设置字体大小
设置 <div class="text-h5 text-sm-h4">测试标题</div> 样式 text-{value}适用于从xs到
2024-02-28, Views: 490 , Topics: Vuetify
-
Vuetify v-data-table 表格添加顶部操作按钮
需求 Table表格控件添加操作按钮,如:刷新/新建/查询。 top 插槽 在v-data-table中使用具名插槽v-slot:top。 <templa
2024-02-26, Views: 430 , Topics: Vuetify
-
Vuetify 表格添加操作按钮
自定义表头 服务端返回数据中没有包含actions一项,是前端自己添加的表头。 const headers = [ {title: 'ID', align:
2024-02-23, Views: 427 , Topics: Vuetify
-
Vuetify 3 全局配置 v-btn 文字大小写
需求 v-btn默认的英文文字是大写,需要转为正常显示(该小写就小写,该大写就大写)。 配置 createVuetify方法中,传入defaults属性,设置V
2024-02-22, Views: 630 , Topics: Vuetify