linux环境下安装nginx

摘要: Linux安装nginx 转自:https://www.cnblogs.com/pxstar/p/14808244.html 在linux下安装nginx,首先需要安装 gcc-c++编译器。然后安装nginx依赖的pcre和zlib包。最后安装nginx即可。 1.先安装gcc-c++编译器 yu 阅读全文
posted @ 2021-12-01 21:03 jav-a- 阅读(216) 评论(0) 推荐(0)

mysql 连接错误The server time zone value '?????????±?????????±???¤' is

摘要: 在连接字符串后面加上?serverTimezone=UTC 其中UTC是统一标准世界时间。 完整的连接字符串示例:jdbc:mysql://localhost:3306/test?serverTimezone=UTC 或者还有另一种选择:jdbc:mysql://127.0.0.1:3306/tes 阅读全文
posted @ 2021-12-01 09:20 jav-a- 阅读(63) 评论(0) 推荐(0)

springboot 整合swagger2 启动控制台报错 Failed to start bean 'documentationPluginsBootstrapper',空指针

摘要: springboot版本和swagger版本不适配,换个低版本springboot尝试. <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> 阅读全文
posted @ 2021-12-01 08:58 jav-a- 阅读(738) 评论(0) 推荐(1)