上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 26 下一页

IE8兼容H5语义标签

摘要: //IE浏览器定义的特殊属性,通过hack方式判断IE版本来执行不同的代码,IE8以下浏览器自动创建html5语义标签,从而实现兼容<!--[if lte IE 8] <script src=./js/html5shiv.min.js></script><![endif]--> 阅读全文
posted @ 2016-10-25 12:50 rigidwang 阅读(272) 评论(0) 推荐(0)

Java中Double类型计算问题

摘要: public class Test{ public static void main(String args[]){ System.out.println(0.05+0.01); System.out.println(1.0-0.42); System.out.println(4.015*100); 阅读全文
posted @ 2016-10-20 18:14 rigidwang 阅读(373) 评论(0) 推荐(0)

mysql root 维护

摘要: 修改root密码: mysql -uroot -paaamysql> use mysql;mysql> UPDATE user SET password=password("aaa") WHERE user='root'; mysql> flush privileges;mysql> exit; # 阅读全文
posted @ 2016-09-25 21:05 rigidwang 阅读(131) 评论(0) 推荐(0)

工作流调试

摘要: 问题1:流程图指定了处理人,页面无法显示 解决方法: SELECT * FROM cjbpm_node n WHERE n.PROCESSDEFINITION_='8a999316572416f20157243372cf0000' 通过DESCRIPTSION_ 查看节点的具体配置信息,如果是固定处 阅读全文
posted @ 2016-09-14 22:14 rigidwang 阅读(122) 评论(0) 推荐(0)

react-native 问题总结

摘要: 给npm换源 1.通过config配置指向国内源 npm config set registry http://registry.cnpmjs.org //配置指向源 npm info express //下载安装第三方包 2.通过npm命令指定下载源 npm --registry http://r 阅读全文
posted @ 2016-08-29 17:05 rigidwang 阅读(285) 评论(0) 推荐(0)

react-native win7环境搭建

摘要: 时间:2016-08-22 晚,西安 1.安装jdk java version "1.6.0_45"Java(TM) SE Runtime Environment (build 1.6.0_45-b06)Java HotSpot(TM) Client VM (build 20.45-b01, mix 阅读全文
posted @ 2016-08-22 21:38 rigidwang 阅读(296) 评论(0) 推荐(0)

git

摘要: git status查看本地修改与服务器的差异。 git add .将这些差异文件添加,这样就可以提交了。 git commit –m “这里是注释”提交更改到服务器。 git checkout master更改到master库。 git pull将服务器最新的更改获取到本地。 git merge 阅读全文
posted @ 2016-08-17 14:30 rigidwang 阅读(144) 评论(0) 推荐(0)

dubbo 试用全过程

摘要: 概述: dubbo服务容器是一个standalone的启动程序,因为后台服务不需要Tomcat或JBoss等Web容器的功能,如果硬要用Web容器去加载服务提供方,增加复杂性,也浪费资源。 服务容器只是一个简单的Main方法,并加载一个简单的Spring容器,用于暴露服务。 服务容器的加载内容可以扩 阅读全文
posted @ 2016-08-16 22:33 rigidwang 阅读(379) 评论(0) 推荐(0)

vmware centos6.5 net 配置

摘要: 使用NAT模式 虚拟机网络连接使用NAT模式,物理机网络连接使用Vmnet8。 虚拟机设置里面——网络适配器,网络连接选择NAT模式。 虚拟机菜单栏—编辑—虚拟网络编辑器,选择Vmnet8 NAT模式, 1.在最下面子网设置ip为192.168.157.0 子网掩码255.255.255.0 2.N 阅读全文
posted @ 2016-08-04 12:22 rigidwang 阅读(261) 评论(0) 推荐(0)

连接收藏

摘要: http://repo.spring.io/libs-release-local/org/springframework/spring 阅读全文
posted @ 2016-07-10 00:57 rigidwang 阅读(114) 评论(0) 推荐(0)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 26 下一页