沃达风
摘要: package com.javabasic.thread; public class ThreadTest { public static void attack() { System.out.println("fight"); System.out.println("Current Thread 阅读全文
posted @ 2020-06-08 15:35 woodafeng 阅读(155) 评论(0) 推荐(0) 编辑
摘要: git fetch --all //只是下载远程内容,不做任何合并 git reset --hard origin/master //把HEAD指向刚下载的最新版 阅读全文
posted @ 2019-09-10 09:09 woodafeng 阅读(775) 评论(0) 推荐(0) 编辑
摘要: 控制台输入即可调出 阅读全文
posted @ 2019-07-30 15:01 woodafeng 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 微信开放平台创建应用需要签名,如何获取签名呢? 有两种方法可以获得签名。 工具链接:https://pan.baidu.com/s/15Zb7_KI3dbeObrYdUdaaag 提取码:mxl4 阅读全文
posted @ 2019-07-29 09:42 woodafeng 阅读(737) 评论(0) 推荐(0) 编辑
摘要: git push -f origin master 注释: origin远程仓库名,master分支名,-f为force,意为:强行、强制。 此命令将强制推送到远程仓库,不会有什么提示。忠告:请谨慎使用!请谨慎使用!请谨慎使用! 阅读全文
posted @ 2019-07-09 20:59 woodafeng 阅读(1381) 评论(0) 推荐(0) 编辑
摘要: mvn install:install-file -Dfile=D:\dev\workspace\p2psys-core\libs\xssProtect-1.6.jar -DgroupId=com.woodafeng.xss -DartifactId=xssprotect -Dversion=1.6.0 -Dpackaging=jar com.woodafeng.xss ... 阅读全文
posted @ 2019-03-22 15:05 woodafeng 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 前景回顾 eclipse自带maven生成的repository仓库是在C盘下,由于之前占用空间太大,遂自定义到D盘,删除了C盘的repository。原因分析 原C盘下repository里有下载的插件文件,在D盘下无法找到maven-compiler-plugin的插件。 解决方法 方法一: 然 阅读全文
posted @ 2019-03-21 17:54 woodafeng 阅读(802) 评论(0) 推荐(0) 编辑
摘要: 1、安装android SDK(使用android studio安装 方便管理各个版本的android SDK)2、安装模拟器Genymotion 远程代码启动步骤:1、更新模块npm install2、因为涉及到原生代码,所以在执行完install后,需要执行link命令react-native 阅读全文
posted @ 2019-03-14 13:57 woodafeng 阅读(566) 评论(0) 推荐(1) 编辑
摘要: 首先将本地项目初始化 然后添加一个远程仓库 要先从远程库更新 之后先标记,提交到本地仓库,再推送到远程仓库 阅读全文
posted @ 2019-03-09 22:12 woodafeng 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 错误描述FAILURE: Build failed with an exception. * What went wrong:A problem occurred configuring project ':app'.> You have not accepted the license agree 阅读全文
posted @ 2019-03-01 15:37 woodafeng 阅读(247) 评论(0) 推荐(0) 编辑