由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - Re: [转载] Questions on failover & Hot dep
相关主题
问一个J2EE和Tomcat问题土人问个J2EE的弱问题 *_<
JSP How to Invoke the Specific version of Xerces-JIs .NET catching up?
Re: weblogic question国内的java培训
[转载] Questions on failover & Hot deployment想试试Jboss,下乃个?
Jboss Failover (unplug network cable)JAVA J2EE 工作的技能要求
puzzles about load balancing and failover of JBoss clusterJ2EE: why is my .jsp not refreshed?
Java vs C++ --> What is the ultimate direction?A very Stupid Question
java在美国到底怎样?Spring分布式应用的入门例子
相关话题的讨论汇总
话题: failover话题: hot话题: clustering话题: questions话题: container
进入Java版参与讨论
1 (共1页)
i**h
发帖数: 17
1
even though failover is not J2EE standard, every vendor pretty much
implemented it in the same way. after all, there are well-known computer
science research on how this can and should be done. and i don't think porting
to another container is a big deal because most likely you are going to have
container specific configure file for clustering (e.g. weblogic.xml,
jboss.xml, etc) and if you need to port to another container, you know where
you should change. (unless you use things like xdoclet,
m******t
发帖数: 2416
2

That's probably why almost all the container vendors have a "not recommended
for production environment" note attached to hot deployment.

【在 i**h 的大作中提到】
: even though failover is not J2EE standard, every vendor pretty much
: implemented it in the same way. after all, there are well-known computer
: science research on how this can and should be done. and i don't think porting
: to another container is a big deal because most likely you are going to have
: container specific configure file for clustering (e.g. weblogic.xml,
: jboss.xml, etc) and if you need to port to another container, you know where
: you should change. (unless you use things like xdoclet,

r*t
发帖数: 34
3
Thanks a lot for your answer, it is really helpful for me. But I still have
some puzzles to be clarified, thanks for your advice very much!
1. You talked about failover related to 'clustering', however, my project
focused more on 'failover' itself. All we need is just failover, not
clustering. In this case, can we still have the similar expection as for
clustering? Correct me if I am wrong, for 'failover' related to clustering, we
rely more on hardware. However, here we means to implement 'failo

【在 i**h 的大作中提到】
: even though failover is not J2EE standard, every vendor pretty much
: implemented it in the same way. after all, there are well-known computer
: science research on how this can and should be done. and i don't think porting
: to another container is a big deal because most likely you are going to have
: container specific configure file for clustering (e.g. weblogic.xml,
: jboss.xml, etc) and if you need to port to another container, you know where
: you should change. (unless you use things like xdoclet,

i**h
发帖数: 17
4
the only way to support failover is via redundancy, of software processes
(e.g. you can start two weblogic servers on one machine) and hardware (e.g.
you have 2 machines with weblogic running on them, for true failover).
clustering refered to in this context is at software level, not at hardware
level. for instance, there are very complex communication schemes on how to
synchronize changes among multiple servers (see jboss jgroups as an example).
as for classloader issues, i cannot give you much

【在 r*t 的大作中提到】
: Thanks a lot for your answer, it is really helpful for me. But I still have
: some puzzles to be clarified, thanks for your advice very much!
: 1. You talked about failover related to 'clustering', however, my project
: focused more on 'failover' itself. All we need is just failover, not
: clustering. In this case, can we still have the similar expection as for
: clustering? Correct me if I am wrong, for 'failover' related to clustering, we
: rely more on hardware. However, here we means to implement 'failo

1 (共1页)
进入Java版参与讨论
相关主题
Spring分布式应用的入门例子Jboss Failover (unplug network cable)
Question on J2EE containerpuzzles about load balancing and failover of JBoss cluster
Java vs .NETJava vs C++ --> What is the ultimate direction?
Help!: tomcat classloading problemjava在美国到底怎样?
问一个J2EE和Tomcat问题土人问个J2EE的弱问题 *_<
JSP How to Invoke the Specific version of Xerces-JIs .NET catching up?
Re: weblogic question国内的java培训
[转载] Questions on failover & Hot deployment想试试Jboss,下乃个?
相关话题的讨论汇总
话题: failover话题: hot话题: clustering话题: questions话题: container