在 Tomcat 上部署项目-ds 文件?
通常我使用jboss AS 4.x,但我需要在tomcat上部署我的项目,但是当我将我的project-ds文件标记为可部署时,会出现类似“没有服务器支持单文件部署”的错误?
接缝2.2.1.最终 雄猫6.0.18 (工作版本使用jboss 4.2.3 GA)
Normally I use jboss AS 4.x but I need to deploy on tomcat my project ,but when I mark as deployable my project-ds file an error accours like 'there are no server supports single file deployment' ?
seam 2.2.1.final
tomcat 6.0.18
(working version uses jboss 4.2.3 GA)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Tomcat 中,您不使用 project-DS.xml 文件声明数据源。相反,您可以在项目的 META-INF 目录中的 Context.xml 文件中定义它们。有关详细信息,请参阅此链接:
http:// /tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html
In Tomcat, you do not declare your datasources using a project-DS.xml file. Instead, you define them in your Context.xml file, located in your project's META-INF directory. For more info on that, see this link:
http://tomcat.apache.org/tomcat-6.0-doc/jndi-datasource-examples-howto.html
在 JBoss 中,xyz-ds.xml 自动转换为标准 jboss-service.xml(MBean-Descriptor)。在 context.xml 或 web.xml 中配置 DS(取决于数据源的范围)。
@参见jboss-jca.sar
@参见http://labanimal.fudan.edu.cn/docs /jndi-datasource-examples-howto.html
In JBoss a xyz-ds.xml is transformed into a standard jboss-service.xml (MBean-Descriptor) automaticly. Configure your DS in the context.xml or in the web.xml (depends on the scope of your Datasource).
@see jboss-jca.sar
@see http://labanimal.fudan.edu.cn/docs/jndi-datasource-examples-howto.html