mybatis-plus速查
· One min read
xml 原生转义
| 字符名称 | sql符号 | 转义字符 |
|---|---|---|
| 大于号 | > | > |
| 小于号 | < | < |
| 不等于 | <> | <> |
| 大于等于号 | >= | >= |
| 小于等于号 | <= | <= |
| 与 | & | & |
| 单引号 | ' | ' |
| 双引号 | " | " |
| 字符名称 | sql符号 | 转义字符 |
|---|---|---|
| 大于号 | > | > |
| 小于号 | < | < |
| 不等于 | <> | <> |
| 大于等于号 | >= | >= |
| 小于等于号 | <= | <= |
| 与 | & | & |
| 单引号 | ' | ' |
| 双引号 | " | " |
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
server:
port: 7878
shutdown: graceful
liteflow:
rule-source: config/**/*.el.xml
# Spring
spring:
mvc:
async:
request-timeout: 30000
application:
# 应用名称
name: xxxx
main:
allow-bean-definition-overriding: true
profiles:
# 环境配置
active: @spring.profiles.active@
lifecycle:
# 优雅下线超时时间
timeout-per-shutdown-phase: 5m
# 暴露 shutdown 接口
management:
endpoint:
health:
probes:
enabled: true
# 启用 shutdown 端点
shutdown:
enabled: true