由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 发现先在java库很多fluent style api.
相关主题
scala大牛入scala支持Restful web service的问题
Functional programming 是大势所趋弱类型 server side
关于clojureC# 6.0 的视频,太猛了...
唉,看来scala已经废了node.js不可放弃
从vert.x的例子看脚本functional programming lang里面 如果我说以後会大面积火的,还是lisp (clojure)
Celery in Golang and Scala?开马scala感觉不会写code了
大家真心觉得akka好用吗?再挖一个语言坑:scala流年不顺
大家有没有觉得Scala不如Haskell美?有没有简化的xml? (转载)
相关话题的讨论汇总
话题: text话题: content话题: type话题: putheader话题: method
进入Programming版参与讨论
1 (共1页)
T******7
发帖数: 1419
1
比如zookeeper, 比如vert.x
request.response().putHeader("Content-Type", "text/plain").write("some text"
).end();
这种玩意debug起来是悲剧阿。还有exception怎么catch.
z****e
发帖数: 54598
2
request
.response()
.putHeader("Content-Type", "text/plain")
.write("some text")
.end();
写成这样就好了
如果你想看log的话
用aop,直接设置pointcut = abc.com.ClassName.*
这样每次调用method/func的时候
都会被拦截,然后你在log中就会看到
类似
method name = response
method name = putHeader, parameter0 = Content-Type:String...
method name = write, parameter0 = "some text":String
method name = end
酱紫,看你自己怎么设置log了
c*********e
发帖数: 16335
3
response一般传json就可以了,client side拿到json之后把它写出来。

text"

【在 T******7 的大作中提到】
: 比如zookeeper, 比如vert.x
: request.response().putHeader("Content-Type", "text/plain").write("some text"
: ).end();
: 这种玩意debug起来是悲剧阿。还有exception怎么catch.

d******e
发帖数: 2265
4
这就是要上Scala的节奏

text"

【在 T******7 的大作中提到】
: 比如zookeeper, 比如vert.x
: request.response().putHeader("Content-Type", "text/plain").write("some text"
: ).end();
: 这种玩意debug起来是悲剧阿。还有exception怎么catch.

l******t
发帖数: 55733
5
我看java以后直接用scala的spec就可以了
1 (共1页)
进入Programming版参与讨论
相关主题
有没有简化的xml? (转载)从vert.x的例子看脚本
Scala的operator似乎不太好读Celery in Golang and Scala?
What language I should use?大家真心觉得akka好用吗?
What is the simple plain text editor in iMAC ?大家有没有觉得Scala不如Haskell美?
scala大牛入scala支持Restful web service的问题
Functional programming 是大势所趋弱类型 server side
关于clojureC# 6.0 的视频,太猛了...
唉,看来scala已经废了node.js不可放弃
相关话题的讨论汇总
话题: text话题: content话题: type话题: putheader话题: method