redis.conf配置文件 配置项 值 说明 slave-read-only yes slave是否只读 slave-serve-stale-data yes 当slave与master断开连接,slave是否继续提供服务 appendonly yes 开启aof daemonize yes 守护 ...
分类:
其他好文 时间:
2017-05-18 21:28:22
阅读次数:
297
<tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="delete*" propagation="REQUIRED" read-only="false" ...
分类:
编程语言 时间:
2017-05-12 14:55:00
阅读次数:
1355
Window.devicePixelRatioThis read-only property returns the ratio of the resolution in physical pixels to the resolution in CSS pixels for the current ...
分类:
移动开发 时间:
2017-05-09 23:12:49
阅读次数:
287
root权限下 : 首先用umount /mnt/文件夹 卸载文件系统,必要时可以用umount -f(可能丢失数据)然后rm -rf /mnt/cdrom mkdir /mnt/cdrom mount /dev/cdrom /mnt/cdrom #/dev/cdrom 是个块设备。 /mnt/cd ...
分类:
其他好文 时间:
2017-05-09 11:23:49
阅读次数:
162
刚刚运行一下以前的一个Vue+webpack的demo,运行之后没有出现想象中的效果,并且报错 Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>' 点开错误的文件,标注错误的地 ...
分类:
其他好文 时间:
2017-05-07 14:55:45
阅读次数:
759
A read-only user or a user in a read-only database is not permitted to disable 出现如题的问题通常是由于db.lck的所属权限问题造成的。假设碰到类似的问题也能够这样解决。 今天安装了一个artifactory,可是安装一 ...
分类:
数据库 时间:
2017-05-05 14:22:19
阅读次数:
262
问题描述: java代码在开始事务后,先做了一个查询,再insert,此时会报: java.sql.SQLException: could not retrieve transation read-only status server 解决过程: 查看mysql的事物隔离级别 SHOW VARIAB ...
分类:
数据库 时间:
2017-05-04 11:01:38
阅读次数:
232
Python的文件操作: 打开文件;open函数 open的方式有三种 1,r(read-only)也是python中默认的文件打开模式 2,w(write-only)只写模式,比较危险,会覆盖当前文件内容 3,a(append)追加模式,对文件追加内容 读取文件: 读取的方式有三种 read() ...
分类:
编程语言 时间:
2017-05-03 17:28:18
阅读次数:
156
今天主要讲一下布局控制:(visiable,enable,read_only) visiable:可见性,控制字段,组件,分组等是否现实在界面上。一般按条件来控制隐藏的可以在CONTEXT NODE里定义个属性,类型WDY_BOOLEAN 然后再根据条件赋值X:可见 空:不可见 (visiable使 ...
分类:
其他好文 时间:
2017-05-02 11:53:49
阅读次数:
223
1、表结构及数据 2、需引入的jar包: 3、业务层(Service)、持久层(Dao)接口与实现类 Service接口: Service实现类: Dao接口: Dao实现类: 4、applicationContext.xml配置文件 isolation :事物隔离级别 read-only :只读 ...
分类:
编程语言 时间:
2017-05-01 23:42:38
阅读次数:
400