会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
YSHY
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
22
23
24
25
26
27
28
29
30
···
66
下一页
2015年11月29日
protractor protractor.conf.js [launcher] Process exited with error code 1 undefined:1190
摘要: y@y:karma-t01$ protractor protractor.conf.js [launcher] Process exited with error code 1undefined:1190 vlog(2, () => this + ' scheduling notificati...
阅读全文
posted @ 2015-11-29 11:53 yshy
阅读(2720)
评论(0)
推荐(0)
2015年9月21日
JMS集群部署问题 java.net.ConnectException: Connection refused; No available router to destination
摘要: 1:本地spring配置如下 weblogic.jndi.WLInitialContextFactory t3://localhost:9401 ...
阅读全文
posted @ 2015-09-21 18:56 yshy
阅读(7145)
评论(1)
推荐(0)
2015年9月17日
JMS 问题java.lang.NoClassDefFoundError: weblogic/security/acl/UserInfo
摘要: run:Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/security/acl/UserInfo at weblogic.jndi.WLInitialContextFactory.getInitialCo...
阅读全文
posted @ 2015-09-17 21:06 yshy
阅读(2572)
评论(0)
推荐(0)
2015年9月8日
PartialFunction(偏函数)
摘要: val one:PartialFunction[Int,String]={ case 1 => "one" case 2 => "two" case _ => "other numbers" } println(one(3))
阅读全文
posted @ 2015-09-08 22:46 yshy
阅读(296)
评论(0)
推荐(0)
2015年9月7日
转载:关于 Token,你应该知道的十件事
摘要: 关于 Token,你应该知道的十件事原文地址:http://alvinzhu.me/blog/2014/08/26/10-things-you-should-know-about-tokens/原文是一篇很好的讲述 Token 在 Web 应用中使用的文章,而这是我和Special合作翻译的译文。1...
阅读全文
posted @ 2015-09-07 19:37 yshy
阅读(1032)
评论(0)
推荐(0)
2015年9月6日
002 Spring Restful案例
摘要: 1:工程结构需要注意的是需要额外导入以下三个包:jackson-annotations-2.6.1.jarjackson-core-2.6.1.jarjackson-databind-2.6.1.jar2:配置文件(1)web.xml 30 ...
阅读全文
posted @ 2015-09-06 20:33 yshy
阅读(314)
评论(0)
推荐(0)
2015年9月5日
给应用创建快捷图标
摘要: 权限:package com.example.t02;import android.app.Activity;import android.app.Fragment;import android.content.Intent;import android.os.Bundle;import andro...
阅读全文
posted @ 2015-09-05 11:09 yshy
阅读(270)
评论(0)
推荐(0)
Weblogic11g+Axis1.4 实现WebService服务
摘要: IDE:NetBeans8.0项目结构:(1)新建接口Hello.javapackage com.test;/** * @author y * @date 2015-9-5 7:51:29 * @version 1.0 * @desc */public interface Hello...
阅读全文
posted @ 2015-09-05 08:14 yshy
阅读(601)
评论(0)
推荐(0)
2015年9月4日
柯里化函数
摘要: def multiply(m:Int)(n:Int):Int=m*n你可以直接传入两个参数:println(multiply(2)(3))你可以填上第一个参数并且部分应用第二个参数:val timesTwo=multiply(2)_println(timesTwo(3))
阅读全文
posted @ 2015-09-04 12:50 yshy
阅读(157)
评论(0)
推荐(0)
函数部分应用Partial application
摘要: def adder(m:Int,n:Int)=m+n val add2 = adder(2,_:Int) println(add2(3)) val add3 = adder(_:Int,3) println(add3(2))使用下划线“_”部分应用一个函数,结果将得到另一个函...
阅读全文
posted @ 2015-09-04 12:44 yshy
阅读(361)
评论(0)
推荐(0)
上一页
1
···
22
23
24
25
26
27
28
29
30
···
66
下一页
公告