Computer networking requires that the computers in the network be linked. This problem considers a “linear” network in which t ...
分类:
其他好文 时间:
2019-03-06 15:16:36
阅读次数:
139
转自:https://pgloader.io/blog/continuous-migration/ After having been involved in many migration projects over the last 10 years, I decided to publish t ...
分类:
其他好文 时间:
2019-03-05 11:36:40
阅读次数:
174
今天编译一个project,我设置为api 14,可是编译报错: Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 4 參考 http://stackoverflow.com/questions/2 ...
分类:
移动开发 时间:
2019-03-04 21:02:26
阅读次数:
337
REQUIRES_NEW 如果不在一个事务那么自己创建一个事务 如果在一个事务中 自己在这个大事务里面在创建一个子事务 相当于嵌套事务 双层循环那种 不管是否存在事务,业务方法总会自己开启一个事务,如果在已有事务的环境中调用,已有事务会被挂起,新的事务会被创建,直到业务方法调用结束,已有事务才被唤醒 ...
分类:
其他好文 时间:
2019-02-26 22:20:33
阅读次数:
208
今天公司需要新建个数据后台,就按照查到的方法构建了Vue框架的项目,引入jQ、bootstrap时,按照在线方法配置,发现 main.js 里的引用jQ一直显示红标,没多想,在按照网上配置完后,npm run dev运行,就抛出这么个错误,百思不得解 错误如下: '$' is defined but ...
分类:
Web程序 时间:
2019-02-25 18:27:16
阅读次数:
761
首先说明一下rn项目的一种相当顺滑升级方法: 1.全局安装react-native-git-upgrade 2. 在项目目录下执行命令: over!就是这么简单 问题记录: 最近在升级项目rn版本0.57.1->0.58.5时遇到了一些问题,提示Requires Babel "^7.0.0-0", ...
分类:
其他好文 时间:
2019-02-22 12:18:37
阅读次数:
155
报错:Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the s ...
分类:
其他好文 时间:
2019-02-19 23:31:38
阅读次数:
448
事务的传播属性 PROPAGATION_REQUIRED 如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中。// 最常用,@Transactional注解默认 PROPAGATION_REQUIRES_NEW 新建事务,如果当前存在事务,把当前事务挂起。 PROPAGATI ...
分类:
编程语言 时间:
2019-02-17 12:51:35
阅读次数:
193
Java 9 出现的 模块化思想/技术 优点:文件体积缩小,权限体系更精准 module-info.java 模块描述信息文件 module 本模块名称{ exports(导出) 对外暴露的包路径; requires 需要依赖的其他模块名称; } 新建: 右击项目>>Configure>>Creat ...
分类:
编程语言 时间:
2019-02-15 19:42:02
阅读次数:
203
nginx安装步骤和遇到的问题 在configure中可能遇到的问题: (1) ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by us ...
分类:
其他好文 时间:
2019-02-08 21:47:59
阅读次数:
170