记录下最近遇到的一些记录的东西: 项目中引用消息中间件,pom文件中添加了依赖,并maven-update,maven-install等,项目启动之后,一直报下面的异常。 Could not index class org/apache/activemq/artemis/api/jms/Active ...
分类:
编程语言 时间:
2020-03-18 09:52:04
阅读次数:
63
微信小程序里没有自带选项卡组件,但是却带有swiper组件,所以,我们便利用swiper来实现选项卡的功能。 先看效果图: wxml代码: 1 <view class="swiper-tab"> 2 <view class="swiper-tab-item {{currentTab==0?'acti ...
分类:
微信 时间:
2020-03-17 23:57:39
阅读次数:
135
expdp可以将数据库中的元数据与行数据导出到操作系统的转储文件. 1).使用create directory语句创建目录对象 SQL> create or replace directory dumpdir as '/opt/oracle/dump'; 2).使用grant语句为用户授予目录对象的 ...
分类:
其他好文 时间:
2020-03-17 19:45:06
阅读次数:
78
1、seek的使用 实现Linux系统tail -f 功能(动态监测日志最后一行新写入的内容) 第一个.py文件 import time with open('access.log', mode='rb') as f: f.seek(0,2) # 将指针跳到文件末尾 while True: line ...
分类:
其他好文 时间:
2020-03-17 19:42:39
阅读次数:
60
maven由于他的约定大于配置,我们之后可以能遇到我们写的配置文件,无法被导出或者生效的问题,解决方法: <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.prop ...
分类:
移动开发 时间:
2020-03-16 19:15:04
阅读次数:
89
1 ;;;当前AutoCAD任务中的顶层AutoCAD应用程序对象 2 (Vlax-Get-Acad-Object) 3 (Setq acadObject (Vlax-Get-Acad-Object)) 4 5 ;;;当前的文档 6 (Vla-Get-ActiveDocument (Vlax-Get ...
分类:
其他好文 时间:
2020-03-16 17:38:31
阅读次数:
119
<template> <el-menu router theme="dark" :default-active="activeIndex" class="el-menu-demo" active-text-color="rgb(250,83,83)" mode="horizontal" @selec ...
分类:
其他好文 时间:
2020-03-16 15:00:39
阅读次数:
521
在执行shell脚本时提示这样的错误主要是由于shell脚本文件是dos格式,即每一行结尾以\r\n来标识,而unix格式的文件行尾则以\n来标识。 查看脚本文件是dos格式还是unix格式:(1)cat -A filename 从显示结果可以判断,dos格式的文件行尾为^M$,unix格式的文件行 ...
分类:
其他好文 时间:
2020-03-16 14:50:58
阅读次数:
48
安装zabbix-agent[root@tz ~]# yum -y install zabbix-agent配置zabbix-agent先备份原配置文件[root@tz ~]# cp /etc/zabbix/zabbix_agentd.conf /etc/zabbix/zabbix_agentd.c... ...
分类:
其他好文 时间:
2020-03-15 20:48:35
阅读次数:
98
本文主要介绍了odoo国际化翻译使用的方法及示例 国际化翻译方法 每个模块的翻译文件放在该模块目录下i18n目录里。模块内相关字符串一般用英语写成,然后通过翻译模板导出功能(Settings ? Translations ? Import/Export ? Export Translation)导出 ...
分类:
其他好文 时间:
2020-03-15 19:11:28
阅读次数:
164