初试JBOSSIDE1.4

博客主要围绕EJB、HTML和应用部署展开。EJB查找引用有不同写法;HTML文档类型声明有简化写法;在应用部署到集群农场时出现‘Failed to setup clustering’问题,原因是Tomcat的jboss - service.xml中缺少对服务的依赖,给出了相应的修复代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

EJB

Object ref = context.lookup("java:/comp/env/ejb/Fibo");

instead of    Object ref = context.lookup("Fibo");

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

instead of  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

DEPLOY

Go to Succeed in deploying applications to the cluster farm and read the solution there.

"Failed to setup clustering", what does it mean?

[JBossCacheService][main] jboss.cache:service=TomcatClusteringCache service to Tomcat clustering not   found
[JBossCacheManager][main] JBossCacheService to Tomcat clustering not found
[TomcatDeployer][main] Failed to setup clustering, clustering disabled

Since 3.2.6, HTTP session replication is based on JBossCache, and more precisely the TomcatClusteringCache? service.
In 3.2.6, 3.2.7, 4.0.1 and 4.0.1SP1, the dependency on this service is missing in Tomcat's jboss-service.xml.

To fix it, please edit /all/jbossweb-tomcat5x.sar/META-INF/jboss-service.xml and enable the <depends optional-attribute-name="CacheName?"> element, update the MBean ObjectName as well as the <depends> element itself.

The resulting code should look as follows:


      <!--
         Configuration for HTTP Session Clustering using JBossCache
      -->
      <depends>jboss.cache:service=TomcatClusteringCache</depends>

instead of

      <!--
         Configuration for HTTP Session Clustering using JBossCache
      -->
      <!--
      <depends optional-attribute-name="CacheName">jboss.cache:service=TreeCache</depends>
      -->
一切OK。GO,GO,GO

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值