由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - soa变成rest,大家公司在用哪个?
相关主题
如何学习用Java开发Web Service?REST
what do u think of SOAP vs REST ( or even FB's thrift server)?请推荐一下RESTful WS Framework
怎么把servlet publish成web services请问高手:thrift 要通过什么连database 比如 mysql ?
现在做jasper report,amazon web services了,goodbug我要经常向你请教了。soap binding with CXF
这个UDDI是咋回事儿?求讲解。。。Web Services 现在很热吗?
Web service framework choice?java web service 得迷惑
java SOAP比restful难学吗?网上信用卡支付的java code怎么写?
什么是JAX WS请推荐学习 java RESTful资料
相关话题的讨论汇总
话题: rest话题: xml话题: soap话题: json话题: soa
进入Java版参与讨论
1 (共1页)
c*********e
发帖数: 16335
1
2个完全不同的idea.大家公司在用哪个?
r***y
发帖数: 4379
2
你是要说 soap 吧
rest 是实现 soa 的一种选择
前几年的 projects 都用 soap , 最近的 projects 清一色都是 rest
但soap在金融等领域用的还比较多, 因为security神马的比较可靠, 具体的记不清了

【在 c*********e 的大作中提到】
: 2个完全不同的idea.大家公司在用哪个?
c*********e
发帖数: 16335
3
soa貌似是service oriented architecture
soap貌似是Simple Object Access Protocol,比如xml,json之类的;
rest貌似是resource oriented architecture,不同语言,都能到那拿到resources.

【在 r***y 的大作中提到】
: 你是要说 soap 吧
: rest 是实现 soa 的一种选择
: 前几年的 projects 都用 soap , 最近的 projects 清一色都是 rest
: 但soap在金融等领域用的还比较多, 因为security神马的比较可靠, 具体的记不清了

e*****t
发帖数: 1005
4
rest是个框。从architecture上讲,的确是有面向rest的architecture.
不过在日常生活中, rest = restful or restish web service,这就是为什么上面的有
误会了。
谈到architecture的话,你也说了,是resource oriented,所以应用很多都是content
based system。对于大多数business oriented,很难直接用。

【在 c*********e 的大作中提到】
: soa貌似是service oriented architecture
: soap貌似是Simple Object Access Protocol,比如xml,json之类的;
: rest貌似是resource oriented architecture,不同语言,都能到那拿到resources.

g*****g
发帖数: 34805
5
Not really. Restful is not easy to consume 4-5 years ago. However, since the
introduction of JAX-RS and Sun Jersey. It's becoming as easy to use on
client side.

content

【在 e*****t 的大作中提到】
: rest是个框。从architecture上讲,的确是有面向rest的architecture.
: 不过在日常生活中, rest = restful or restish web service,这就是为什么上面的有
: 误会了。
: 谈到architecture的话,你也说了,是resource oriented,所以应用很多都是content
: based system。对于大多数business oriented,很难直接用。

t*******e
发帖数: 684
6
有了JSON的lib之后就比较好用了。不过REST还是不会取代SOAP的。SOAP的运用太广泛
了,规范也非常的多。

the

【在 g*****g 的大作中提到】
: Not really. Restful is not easy to consume 4-5 years ago. However, since the
: introduction of JAX-RS and Sun Jersey. It's becoming as easy to use on
: client side.
:
: content

g*****g
发帖数: 34805
7
It's only for legacy reason I think. SOAP is like a function call, and REST
can match that now with readability and performance. It's easier for clients
in other languages to consume the service too.

【在 t*******e 的大作中提到】
: 有了JSON的lib之后就比较好用了。不过REST还是不会取代SOAP的。SOAP的运用太广泛
: 了,规范也非常的多。
:
: the

e*****t
发帖数: 1005
8
这说的还是restful web service啊。
人家问的是architecture
http://www.infoq.com/articles/RESTSOAFuture

the

【在 g*****g 的大作中提到】
: Not really. Restful is not easy to consume 4-5 years ago. However, since the
: introduction of JAX-RS and Sun Jersey. It's becoming as easy to use on
: client side.
:
: content

g*****g
发帖数: 34805
9
他弄错了,是soap,不是soa。soa跟rest没啥好比的,不是一个东西。

【在 e*****t 的大作中提到】
: 这说的还是restful web service啊。
: 人家问的是architecture
: http://www.infoq.com/articles/RESTSOAFuture
:
: the

c*********e
发帖数: 16335
10
glassfish是restful架构的?

the

【在 g*****g 的大作中提到】
: Not really. Restful is not easy to consume 4-5 years ago. However, since the
: introduction of JAX-RS and Sun Jersey. It's becoming as easy to use on
: client side.
:
: content

相关主题
Web service framework choice?REST
java SOAP比restful难学吗?请推荐一下RESTful WS Framework
什么是JAX WS请问高手:thrift 要通过什么连database 比如 mysql ?
进入Java版参与讨论
w********g
发帖数: 21
11
rest and soap are belong to web service domain, different base.web service
is part imp of the SOA. that is my understand.
w**z
发帖数: 8232
12
我觉得rest 最大的好处是easy for client to invoke. 随便搞个http client 就行.
至于resourse aspect of rest, it is hard to follow in the real world.
sometimes people use rest in a soap way, we pass a Json message around.
with Jersey/Jackson, it is so much easier than dealing with XML.

【在 c*********e 的大作中提到】
: soa貌似是service oriented architecture
: soap貌似是Simple Object Access Protocol,比如xml,json之类的;
: rest貌似是resource oriented architecture,不同语言,都能到那拿到resources.

t*******e
发帖数: 684
13
REST can't be easier than SOAP when WSDL is well-defined.

【在 w**z 的大作中提到】
: 我觉得rest 最大的好处是easy for client to invoke. 随便搞个http client 就行.
: 至于resourse aspect of rest, it is hard to follow in the real world.
: sometimes people use rest in a soap way, we pass a Json message around.
: with Jersey/Jackson, it is so much easier than dealing with XML.

w**z
发帖数: 8232
14
dealing with Json is much easier than dealing with XML.

【在 t*******e 的大作中提到】
: REST can't be easier than SOAP when WSDL is well-defined.
d******u
发帖数: 50
15
It depends
c*********e
发帖数: 16335
16
我觉得2个差不多啊,一个有很多tag,一个有很多{}.其实就是换汤不换药。
xml每个tag指定不同的field,json里面的数据必须按默认的顺序才行。

【在 w**z 的大作中提到】
: dealing with Json is much easier than dealing with XML.
z****e
发帖数: 54598
17
我更倾向于用xml
其实我挺喜欢xml的
可能因为自由,而且本科时候专门上过这门课
但是xml的其他东西稍微有点恶心
尤其是涉及到schema之类的
这一块我觉得还应该有简化的空间

【在 c*********e 的大作中提到】
: 我觉得2个差不多啊,一个有很多tag,一个有很多{}.其实就是换汤不换药。
: xml每个tag指定不同的field,json里面的数据必须按默认的顺序才行。

c*********e
发帖数: 16335
18
xml现在其实还是很流行的,pom.xml,android开发里也是用xml来放数据。

【在 z****e 的大作中提到】
: 我更倾向于用xml
: 其实我挺喜欢xml的
: 可能因为自由,而且本科时候专门上过这门课
: 但是xml的其他东西稍微有点恶心
: 尤其是涉及到schema之类的
: 这一块我觉得还应该有简化的空间

w**z
发帖数: 8232
19
one of the biggest complain for Spring is to use XML for configuration. Now
moving to Annotation. Web uses more Json now. simpler, size is smaller .
easier to parse .

【在 c*********e 的大作中提到】
: xml现在其实还是很流行的,pom.xml,android开发里也是用xml来放数据。
w**z
发帖数: 8232
20
After using Jackson for Json , I would never choose XML again unless I
have to:)

【在 c*********e 的大作中提到】
: xml现在其实还是很流行的,pom.xml,android开发里也是用xml来放数据。
相关主题
soap binding with CXF网上信用卡支付的java code怎么写?
Web Services 现在很热吗?请推荐学习 java RESTful资料
java web service 得迷惑Tomcat 的localhost_access_log含有用户登录信息,怎么能改没有?
进入Java版参与讨论
c*********e
发帖数: 16335
21
spring里面bean的name,property,ref等,换成json还真不知道怎么表达。
比如





Now

【在 w**z 的大作中提到】
: one of the biggest complain for Spring is to use XML for configuration. Now
: moving to Annotation. Web uses more Json now. simpler, size is smaller .
: easier to parse .

z****e
发帖数: 54598
22
xml是标准,不是流行的问题,是必须要用

【在 c*********e 的大作中提到】
: xml现在其实还是很流行的,pom.xml,android开发里也是用xml来放数据。
o***i
发帖数: 603
23
xml的效率怎么样?
我们有些数据以xml格式存在DB里,效率很低下

【在 z****e 的大作中提到】
: 我更倾向于用xml
: 其实我挺喜欢xml的
: 可能因为自由,而且本科时候专门上过这门课
: 但是xml的其他东西稍微有点恶心
: 尤其是涉及到schema之类的
: 这一块我觉得还应该有简化的空间

1 (共1页)
进入Java版参与讨论
相关主题
请推荐学习 java RESTful资料这个UDDI是咋回事儿?求讲解。。。
Tomcat 的localhost_access_log含有用户登录信息,怎么能改没有?Web service framework choice?
consume RESTful web services on the client side (web pages)?java SOAP比restful难学吗?
哪位大牛可以总结一下各种java框架的基本思想,优于其它框架的地方以及适用范围。什么是JAX WS
如何学习用Java开发Web Service?REST
what do u think of SOAP vs REST ( or even FB's thrift server)?请推荐一下RESTful WS Framework
怎么把servlet publish成web services请问高手:thrift 要通过什么连database 比如 mysql ?
现在做jasper report,amazon web services了,goodbug我要经常向你请教了。soap binding with CXF
相关话题的讨论汇总
话题: rest话题: xml话题: soap话题: json话题: soa