由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - j2ee启动时, 启动了tomcat吗?
相关主题
想试试Jboss,下乃个?[合集] 现在最好的免费和不免费的application server都是什么?
怎么快速掌握J2EE?Jetty, Tomcat, JBoss comparison
请问现在做Java+websphere或者ATG平台开发的工作有前途么 (转载)真的还有人用那么heavy的web sphere,jboss么?
请教frameworkjava在美国到底怎样?
j2ee web 方向的职业规划使用java的大型站点
Tomcat andJboss请推荐一本J2EE的书
.Net developer doing JavaJ2EE: why is my .jsp not refreshed?
Java EE vs. Core Java, 该选哪个呢?第一份工作,C#还是Java区别大吗?
相关话题的讨论汇总
话题: j2ee话题: tomcat话题: server话题: ejb话题: container
进入Java版参与讨论
1 (共1页)
a***n
发帖数: 1616
1
j2ee启动时, 启动了tomcat吗?
我运行j2ee时,j2ee server起动了,但没看到有tomcat起动啊,8080端口也进不去.
那要怎么才能起动j2ee里配置好的tomcat 4呢?
谢谢
q***e
发帖数: 90
2
It seems you don't really get the meaning
of J2EE.

【在 a***n 的大作中提到】
: j2ee启动时, 启动了tomcat吗?
: 我运行j2ee时,j2ee server起动了,但没看到有tomcat起动啊,8080端口也进不去.
: 那要怎么才能起动j2ee里配置好的tomcat 4呢?
: 谢谢

a***n
发帖数: 1616
3
You said it.
请问,J2EE配置目录里conf/server.xml用来干什么的呢?
好象修改它没有任何用处啊,什么8080,默认自动deploy的几个context都没效果。
你知道怎么回事吗? 那我怎么能够象配置tomcat一样能够操纵j2ee呢?
谢谢

【在 q***e 的大作中提到】
: It seems you don't really get the meaning
: of J2EE.

l***a
发帖数: 18
4
FIRST conf/server.xml is for TOMCAT not for J2EE. You need to tell us your OS,
and how your start TOMCAT

【在 a***n 的大作中提到】
: You said it.
: 请问,J2EE配置目录里conf/server.xml用来干什么的呢?
: 好象修改它没有任何用处啊,什么8080,默认自动deploy的几个context都没效果。
: 你知道怎么回事吗? 那我怎么能够象配置tomcat一样能够操纵j2ee呢?
: 谢谢

a***n
发帖数: 1616
5
I use Redhat Linux 8
Download j2ee 1.3.1 from sun
I'm user the conf/server.xml is for tomcat,
to my experience, I feel that j2ee is tomcat, tomcat is j2ee ....
it seems j2ee doesn't care about conf/server.xml and just run as he likes!
just don't know how to make conf/server.xml effective for j2ee configuration.

【在 l***a 的大作中提到】
: FIRST conf/server.xml is for TOMCAT not for J2EE. You need to tell us your OS,
: and how your start TOMCAT

l***a
发帖数: 18
6
Tomcat is a J2EE compliant application server, it is not J2ee. J2ee is a
standard, it can not be started.
If you installed Tomcat correctly, you could try to type "tomcat4 start" in
the command line as a su, and then http://localhost:8080 to see if tomcat
starts correctly. Also you can check /var/tomcat4/logs for the errors.

configuration.
OS,

【在 a***n 的大作中提到】
: I use Redhat Linux 8
: Download j2ee 1.3.1 from sun
: I'm user the conf/server.xml is for tomcat,
: to my experience, I feel that j2ee is tomcat, tomcat is j2ee ....
: it seems j2ee doesn't care about conf/server.xml and just run as he likes!
: just don't know how to make conf/server.xml effective for j2ee configuration.

a***n
发帖数: 1616
7
wo faint!
看来你只用过tomcat, 没用过j2ee server.
j2ee server是个杂交过的tomcat?

【在 l***a 的大作中提到】
: Tomcat is a J2EE compliant application server, it is not J2ee. J2ee is a
: standard, it can not be started.
: If you installed Tomcat correctly, you could try to type "tomcat4 start" in
: the command line as a su, and then http://localhost:8080 to see if tomcat
: starts correctly. Also you can check /var/tomcat4/logs for the errors.
:
: configuration.
: OS,

l***a
发帖数: 18
8
You are totally confused. J2EE is a standard. if you develop your program
according to this standard, then you applcation can run on any j2ee compliant
server.
Tomcat implements web-container part of J2EE, but it does not implement EJB
container. to use EJB you need to install JBOSS.
or you can try BEA WEBLogic or Websphere with both web-container.
there is no such thing called J2EE SERVER, there is only server which is J2EE
compatible. you should take look at the overview of j2ee by SUN to know

【在 a***n 的大作中提到】
: wo faint!
: 看来你只用过tomcat, 没用过j2ee server.
: j2ee server是个杂交过的tomcat?

s*********n
发帖数: 13
9
maybe he is talking about a mini j2ee server implementation shipped with j2ee
sdk, nobody will use that in practice i think

【在 l***a 的大作中提到】
: You are totally confused. J2EE is a standard. if you develop your program
: according to this standard, then you applcation can run on any j2ee compliant
: server.
: Tomcat implements web-container part of J2EE, but it does not implement EJB
: container. to use EJB you need to install JBOSS.
: or you can try BEA WEBLogic or Websphere with both web-container.
: there is no such thing called J2EE SERVER, there is only server which is J2EE
: compatible. you should take look at the overview of j2ee by SUN to know

a***n
发帖数: 1616
10
还是你说的对。你说的这个mini j2ee server难道只包含基本的tomcat和基本的ejb支持?
那么,有实用价值的J2EE开发环境该是怎么搭建呢?
j2sdk(SE) + j2skd(EE) + Tomcat(for webapps container, externally
downloaded and installed) + JBOSS(for EJB) ?
或者不用Tomcat,用IBM Websphere做webapps container?

【在 s*********n 的大作中提到】
: maybe he is talking about a mini j2ee server implementation shipped with j2ee
: sdk, nobody will use that in practice i think

N***m
发帖数: 4460
11
again,use myeclipse

【在 a***n 的大作中提到】
: j2ee启动时, 启动了tomcat吗?
: 我运行j2ee时,j2ee server起动了,但没看到有tomcat起动啊,8080端口也进不去.
: 那要怎么才能起动j2ee里配置好的tomcat 4呢?
: 谢谢

s***8
发帖数: 1136
12
You mean J2EE SDK, which is a full application server.
but 1.3 is way too old. Use Java EE SDK 6 (~GlassFish 3)
1 (共1页)
进入Java版参与讨论
相关主题
第一份工作,C#还是Java区别大吗?j2ee web 方向的职业规划
请问各位(巨,大,中,小,微,不)牛Tomcat andJboss
问一个J2EE和Tomcat问题.Net developer doing Java
web server和application server 有什么区别?Java EE vs. Core Java, 该选哪个呢?
想试试Jboss,下乃个?[合集] 现在最好的免费和不免费的application server都是什么?
怎么快速掌握J2EE?Jetty, Tomcat, JBoss comparison
请问现在做Java+websphere或者ATG平台开发的工作有前途么 (转载)真的还有人用那么heavy的web sphere,jboss么?
请教frameworkjava在美国到底怎样?
相关话题的讨论汇总
话题: j2ee话题: tomcat话题: server话题: ejb话题: container