<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://unpkg.com/vue/dist/vue.js"></script> </head> <body> <div id="app"> <p>{{ mes ...
分类:
其他好文 时间:
2021-07-01 17:16:20
阅读次数:
0
依赖包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 配置文件(application.pr ...
分类:
编程语言 时间:
2021-07-01 16:26:20
阅读次数:
0
1.下载oracle简易版客户端 或instantclient 2.解压到指定目录(自己定) 3.环境变量配置 变量名: TNS_ADMIN 变量值: D:\oracle\product\10.2.0\client_1\NETWORK\ADMIN (安装目录即可) 变量名: NLS_LANG 变量值 ...
分类:
数据库 时间:
2021-06-29 16:06:30
阅读次数:
0
In my circumstances the error was due to the fact the listener did not have the db's service registered. I solved this by registering the services. Ex ...
分类:
其他好文 时间:
2021-06-16 17:56:58
阅读次数:
0
keepalive长连接 设定保持连接超时时长,0表示禁止长连接,默认为75s示例:在响应头显示此首部字段 在nginx的默认配置中写的是65 vim /etc/nginx/nginx.conf keepalive_timeout 65; 可以按照实际需求设置长短 一、对外显示keeplive值 1 ...
分类:
Web程序 时间:
2021-06-02 19:01:43
阅读次数:
0
出现错误场景:通常是由于很多人或者很多应用(java应用、R应用等)连接数据库,导致连接数(session)数量超出限制。 解决办法 定位原因 -- 以sysdba身份登陆PL/SQL sqlplus / as sysdba; -- 查看当前连接进程数 SQL>select count(*) fro ...
分类:
数据库 时间:
2021-05-24 04:19:23
阅读次数:
0
SpringBoot 整合 redis 实现 token 验证 在上一节中,实现了 SpringBoot + redis 的整合,因此在这里只列出必要部分的 redis 代码。 1、Redis 依赖 <!-- redis --> <dependency> <groupId>org.springfra ...
分类:
编程语言 时间:
2021-05-03 12:03:59
阅读次数:
0
废话不多说, 直接上代码 需要引入的pom依赖就不多说了, 无非jedis和redis相关的. yml中关于redis的配置文件 spring: # redis配置 redis: # redis数据库索引(默认为0) database: 1 host: localhost port: 111 # r ...
分类:
编程语言 时间:
2021-04-26 13:38:37
阅读次数:
0
1.把cs文件上传至服务器 2.安装java环境 yum -y install java-1.8.0-openjdk* 3.开启服务端 ./teamserver ip 密码 ./teamserver xxx.xxx.xxx.xxx xxxxx 4.问题 出现连接超时 因为 centos 开启了防火墙 ...
分类:
其他好文 时间:
2021-04-16 12:10:45
阅读次数:
0
现象: 执行 lsnrctl start 来启动 listener,却失败了。 $ lsnrctl stat LSNRCTL for Linux: Version 19.0.0.0.0 - Production on 09-APR-2021 23:45:02 Copyright (c) 1991, ...
分类:
数据库 时间:
2021-04-10 13:32:17
阅读次数:
0