摘要:
oracle释放删除表空间的方法:1、利用“alter table 你的表名 enable row movement;”语句开启允许行移动,该语句允许rowid改变;2、利用“alter table 你的表名 shrink space;”语句回收空间即可。 本教程操作环境:windows10系统、O 阅读全文
摘要:
地址:Swagger Editor 1 openapi: 3.0.3 2 info: 3 title: Swagger Petstore - OpenAPI 3.0 4 description: |- 5 This is a sample Pet Store Server based on the 阅读全文
摘要:
MyBatis 模糊查询时对特殊字符"%“和”_"的处理 问题: 输入"%“或”_",查询结果为全部数据,且无法查询到带有"%"或者下划线 的数据。 解决: 对特殊字符转义 例如查询字段为 name 若name中含有"%“或 “_” 转为”/%" “/ _” public void setName( 阅读全文
摘要:
1.首先应用编写一个接口(http均可) 接口查询数据库中随便一个表一条数据,正常返回数据这表示应用健康,否则应用运行异常。 @RequestMapping(value = "/heartbeat", method = RequestMethod.GET) public String heartbe 阅读全文
摘要:
gitee常用命令 阅读全文
摘要:
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.DisposableBean; import org.springframework.context.a 阅读全文