官网下载: https://www.elastic.co/cn/downloads/past-releases/ 启动时可能遇到java mysql的时区问题 unrecognized or represents more than one time zone. You must configure ...
分类:
其他好文 时间:
2020-07-12 20:27:00
阅读次数:
75
Startup,顾名思义,就是启动类,用于配置ASP.NET Core应用的服务和请求管道。 Startup有两个主要作用: 通过ConfigureServices方法配置应用的服务。服务是一个提供应用功能的可重用组件。 通过Configure方法配置应用的请求处理管道(中间件)。 下面是VS通过A ...
分类:
Web程序 时间:
2020-07-12 18:42:30
阅读次数:
78
打开Visual Studio 按Ctrl+Shift+P 在输入框内输入Configure Display Language 如果有zh-CN就点击zh-CN,如果没有中文,就选择:安装其他语言,点击中文(简体)的“install” 最后重启软件即可 ...
分类:
其他好文 时间:
2020-07-11 12:31:42
阅读次数:
149
Developing a multi-module application where the backend runs on Spring Boot and the frontend is powered by Angular is far less complicated than one mi ...
分类:
编程语言 时间:
2020-07-10 19:34:06
阅读次数:
88
安装环境Memcached编译安装环境L:Linux(centos7.6)http://download.redis.io/releases/R:Memcached(1.5.12)http://www.memcached.org/files/memcached-1.5.12.tar.gz主机信息:部署规划:172.24.77.241(sr1.dj.com):运行Memcached172.24.77
分类:
系统相关 时间:
2020-07-10 09:49:22
阅读次数:
121
今天在程序中看到有使用这个接口,学习了一下,感觉作为观察者模式的一个实现方式,使用起来还是不错的。查了一些资料,结合自己的程序,分四个部分进行介绍。等程序自测完成后,补充完成,先写一部分。 一:介绍 1.ApplicationEventPublisherAware ApplicationEventP ...
分类:
移动开发 时间:
2020-07-09 19:12:37
阅读次数:
308
本文介绍使用开源的repmgr组件配置PostgreSQL12的replication以及failover。1、环境信息2、安装PG软件包所有节点安装PostgreSQL12以及repmgr软件包。[root@hwd04~]#dnf-yinstallhttps://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-red
分类:
数据库 时间:
2020-07-09 17:58:16
阅读次数:
75
注意!!!!源码安装是需要有很强的编程能力,如果你是小白还是建议使用工具安装。 源码安装首先需要从相关渠道获得源码,得到源码后就可以使用以下三步进行安装。 执行configure,生成Makefile文件 # ./configure --prefix=/path/to/somewhere --pre ...
分类:
系统相关 时间:
2020-07-08 23:13:55
阅读次数:
106
1、LAMP 环境搭建 1.1 、安装 apache 安装 pcre tar -zxvf pcre-8.41.tar.gz cd pcre-8.41 ./configure --prefix=/home/pcre make make install 安装 apr tar -zxvf apr-1.6. ...
分类:
其他好文 时间:
2020-07-08 21:26:11
阅读次数:
65
@EnableWebSecurity public class seccurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Ex ...
分类:
编程语言 时间:
2020-07-08 20:07:45
阅读次数:
48