idea调教4 ——热部署 1.在pom加入compiler插件 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</ver ...
分类:
其他好文 时间:
2020-11-21 12:08:31
阅读次数:
4
在编写代码时,遇到 在原来的代码中出现这个问题 原来的代码: //3 计算排序时间 template<typename T> void testSort(string sortName, void(* sort) (T [],int ),T arr[],int n){ clock_t startTi ...
分类:
其他好文 时间:
2020-11-21 12:07:18
阅读次数:
5
dubbo项目启动过程中遇到这个异常,很明显是找不到curator的包,所以需要引入curator的相关包才可以, curator是zookeeper的客户端框架,且要引入完整,才不会报错 比如: <dependency> <groupId>org.apache.curator</groupId> ...
分类:
编程语言 时间:
2020-11-20 12:14:49
阅读次数:
9
组件路径:/views/home/components/bottom.vue 示例: <template> <div> <h1>底部信息</h1> <div>{{copyright}}</div> </div> </template> <script> export default { name: ...
分类:
Web程序 时间:
2020-11-20 12:13:40
阅读次数:
17
一、安装apache 1)安装apache yum install -y httpd 2)启动apache服务 systemctl start httpd 3)查看服务状态(验证服务是否启动) systemctl status httpd (状态为active runging是启动)netstat ...
分类:
Web程序 时间:
2020-11-20 12:04:08
阅读次数:
21
RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /in ...
分类:
Web程序 时间:
2020-11-20 12:03:49
阅读次数:
15
v-show不能在<template>上使用 <button v-on:click="warn('Form cannot be submitted yet.', $event)">Submit</button> // ... methods: { warn: function (message, e ...
分类:
Web程序 时间:
2020-11-20 11:58:10
阅读次数:
15
一、导入jar包: 并导入数据库连接jar包: 下载 pool.jar一定要下载1.x版本,亲测2.xxx版本会出现报错:Failed to introspect bean class [org.apache.commons.dbcp.BasicDataSource] for lookup meth ...
分类:
编程语言 时间:
2020-11-20 11:53:08
阅读次数:
7
下面是测试结果,只列出报错了的测试: 1、org.apache.catalina.LifecycleException: A child container failed during start 缺少:cxf-core-3.0.4.jar(最核心的包,不多说) 2、java.lang.ClassN ...
分类:
编程语言 时间:
2020-11-20 11:49:07
阅读次数:
7
一、创建命名空间 apiVersion: v1 kind: Namespace metadata: name: dev 二、创建redis配置ConfigMap apiVersion: v1 kind: ConfigMap metadata: namespace: dev name: redis-c ...
分类:
系统相关 时间:
2020-11-19 12:54:44
阅读次数:
14