上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 40 下一页
摘要: VS中的解决方案 vs Eclipse中的workspace Maven包管理 vs Nuget类库管理 build path vs 阅读全文
posted @ 2017-03-24 10:49 AnswerCard 阅读(183) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/xiao__gui/article/details/52625660 Maven仓库是有特定规则的目录结构. 目录结构由 仓库根目录 , groupId , artifactId , version组成, jar包放在version目录下面如果仓库是自己使用 阅读全文
posted @ 2017-03-24 09:03 AnswerCard 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 4.0.0 asia.banseon banseon-maven2 jar 1.... 阅读全文
posted @ 2017-03-23 20:22 AnswerCard 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 该配置用于单用户配置和全局配置, 单用户配置默认存放于 ${user.home}/.m2/目录中. 全局配置默认存放于Maven安装目录下面的conf目录中. 这两个默认的位置都可以修改. <profile>节点 在仓库的配置一节中,已经对setting.xml中的常用节点做了详细的说明。在这里需要 阅读全文
posted @ 2017-03-23 17:04 AnswerCard 阅读(322) 评论(0) 推荐(0) 编辑
摘要: maven阿里云中央仓库 修改maven根目录下的conf文件夹中的setting.xml文件,内容如下: <mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexu 阅读全文
posted @ 2017-03-22 16:22 AnswerCard 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 以下这些变量是由powershell创建和维护的.ls Variable: 可以获取到所有默认的变量, 每个版本的Powershell可能有差异 $$包含会话所收到的最后一行中的最后一个令牌。 $? 包含最后一个操作的执行状态。如果最后一个操作成功,则包含 TRUE,失败则包含 FALSE。 $^包 阅读全文
posted @ 2017-03-20 13:56 AnswerCard 阅读(409) 评论(0) 推荐(0) 编辑
摘要: https://guhuajun.wordpress.com/2009/05/11/windows-powershell-v2-介绍(5)-高级函数(上)/ https://guhuajun.wordpress.com/2009/05/18/powershell-v2-介绍(6)-高级函数(中)/ 阅读全文
posted @ 2017-03-20 10:53 AnswerCard 阅读(377) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/ceachy/archive/2013/03/01/PowerShell_Profile.html 阅读全文
posted @ 2017-03-19 16:53 AnswerCard 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/flyliuweisky547/article/details/18565705 阅读全文
posted @ 2017-03-19 08:50 AnswerCard 阅读(493) 评论(0) 推荐(0) 编辑
摘要: http://marui.blog.51cto.com/1034148/294775/ 阅读全文
posted @ 2017-03-19 08:44 AnswerCard 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 官方帮助文档https://msdn.microsoft.com/zh-cn/powershell/scripting/powershell-scripting 管道/重定向 管道 : 是指把上一条命令的输出, 作为下一条命令的输入; 符号为 "|"重定向 : 把命令的输出保存到文件中. 符号 "> 阅读全文
posted @ 2017-03-16 17:06 AnswerCard 阅读(229) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/itanders/article/details/5702771 阅读全文
posted @ 2017-03-16 15:11 AnswerCard 阅读(1883) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/renwuqiangg/article/details/51296621 阅读全文
posted @ 2017-03-15 14:04 AnswerCard 阅读(406) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/lzq198754/p/5780426.html 阅读全文
posted @ 2017-03-15 14:03 AnswerCard 阅读(92) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/hfmbook/article/details/7634385 阅读全文
posted @ 2017-03-15 11:09 AnswerCard 阅读(332) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/luoweifu/article/details/10721543 http://blog.csdn.net/hguisu/article/details/6155636/ http://lavasoft.blog.51cto.com/62575/18920 阅读全文
posted @ 2017-03-14 21:26 AnswerCard 阅读(143) 评论(0) 推荐(0) 编辑
摘要: Java异常处理和C#非常相似,不过Java中支持强制异常处理方式, 一旦方法加入了throws关键字,那么调用这个方法的类就必须加上try和catch进行异常处理, 如果不处理(没有try catch), 则需要继续通过throws抛出异常. 阅读全文
posted @ 2017-03-14 21:23 AnswerCard 阅读(562) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/stive_sourcexin/article/details/51329697 阅读全文
posted @ 2017-03-14 20:40 AnswerCard 阅读(183) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/OOAbooke/archive/2012/02/18/2356899.html 阅读全文
posted @ 2017-03-14 20:29 AnswerCard 阅读(187) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/peida/archive/2013/04/24/3036689.html http://blog.csdn.net/zen99t/article/details/49508447 阅读全文
posted @ 2017-03-14 13:56 AnswerCard 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 40 下一页