2023年2月28日
摘要:
./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option
阅读全文
posted @ 2023-02-28 11:00
james-roger
阅读(628)
推荐(0)
2023年2月27日
摘要:
数据库里面的数据太大,根目录里面已经放不下了,需要将数据目录迁移到其他目录 创建新的数据目录 假定“/home”目录存储空间较大 mkdir /home/data/pgsql/ 停止PostgreSQL数据库服务 systemctl stop postgresql-11.service 或者 sys
阅读全文
posted @ 2023-02-27 16:22
james-roger
阅读(286)
推荐(0)
摘要:
在 application.properties里面添加如下内容即可spring.jpa.hibernate.naming.physical-strategy = cn.studyBoot.dao.strategy.UpperTableStrategy import org.apache.commo
阅读全文
posted @ 2023-02-27 14:33
james-roger
阅读(143)
推荐(0)
2023年2月8日
摘要:
参考文档 https://blog.csdn.net/carefree2005/article/details/114819885 1、内核升级步骤1)、查看可升级版本使用命令yum list kernel可以查看已安装的内核版本和可以升级至的最新内核版本,示例最新可以升级的内核版本为3.10.0-
阅读全文
posted @ 2023-02-08 14:22
james-roger
阅读(1325)
推荐(0)
2023年1月2日
摘要:
import io.swagger.annotations.*; import org.apache.http.HttpEntity; import org.apache.http.auth.AuthScope; import org.apache.http.auth.Credentials; im
阅读全文
posted @ 2023-01-02 11:41
james-roger
阅读(2333)
推荐(0)
2022年12月8日
摘要:
@Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD}) public @interface Comment { String value() defa
阅读全文
posted @ 2022-12-08 13:57
james-roger
阅读(1624)
推荐(0)
2022年9月28日
摘要:
wkt数据 POINT(-122.34900 47.65100) LINESTRING ( 32.75550000 24.20710000, 47.68750000 28.61260000 51.01660000 14.98210000, 35.93630000 69.31130000, 35.68
阅读全文
posted @ 2022-09-28 11:46
james-roger
阅读(225)
推荐(0)
2022年8月23日
摘要:
安装教程: https://www.postgresql.org/download/linux/redhat/ 开启远程访问: 修改配置文件 配置文件目录 /var/lib/pgsql/12/data/ 如果是安装的postgres 12 则 目录是 12 1.修改配置文件postgresql.co
阅读全文
posted @ 2022-08-23 11:29
james-roger
阅读(625)
推荐(0)
2022年8月10日
摘要:
需要明确几点: 默认配置下 Spring 只会回滚运行时、未检查异常(继承自 RuntimeException 的异常或者 Error。 @Transactional 注解只能应用到 public 方法才有效。 事务的实现原理 事务的实现原理。如果说你加了一个 @Transactional 注解,此
阅读全文
posted @ 2022-08-10 14:22
james-roger
阅读(34)
推荐(0)
2022年7月7日
摘要:
第一步 安装elasticsearch 1安装elasticsearch 2、新建目录/root/elasticsearch/config,/root/elasticsearch/data和/root/elasticsearch/plugins 在/root/elasticsearch/config
阅读全文
posted @ 2022-07-07 10:37
james-roger
阅读(2169)
推荐(0)