论坛首页 入门技术论坛

求教GWT项目如何发布到web容器

浏览 2994 次
该帖已经被评为新手帖
作者 正文
   发表时间:2008-06-10  
GWT
GWT项目完成后编译成www文件夹应该怎么发布到web容器?比如jboss、tomcat。
我试着在tomcat下发布了,但无法进行远程调用,有人说的web.xml没配置好
恳请前辈指导,web.xml应该如何写,如果想在jboss下发布应该如何打包/设置路径?
   发表时间:2009-04-22  
本人的做法是 安装 eclipse 3.4
安装 myeclipse 7
http://downloads.myeclipseide.com/downloads/products/eworkbench/7.0/updates/

安装Google Update Site for Eclipse 3.4
http://dl.google.com/eclipse/plugin/3.4

用 myeclipse 7 创建一个 Web Project项目
然后在项目目录中找到
.project
编辑它

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>TestApp</name>
	<comment></comment>
	<projects>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.eclipse.jdt.core.javabuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>in.cypal.studio.gwt.core.gwtBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.google.gwt.eclipse.core.gwtProjectValidator</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.google.gdt.eclipse.core.webAppProjectValidator</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.genuitec.eclipse.j2eedt.core.WebClasspathBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.genuitec.eclipse.j2eedt.core.J2EEProjectValidator</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.genuitec.eclipse.j2eedt.core.DeploymentDescriptorValidator</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.wst.validation.validationbuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.genuitec.eclipse.ast.deploy.core.DeploymentBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>com.genuitec.eclipse.ast.deploy.core.deploymentnature</nature>
		<nature>com.genuitec.eclipse.j2eedt.core.webnature</nature>
		<nature>in.cypal.studio.gwt.core.gwtNature</nature>
		<nature>com.google.gwt.eclipse.core.gwtNature</nature>
		<nature>com.google.gdt.eclipse.core.webAppNature</nature>
		<nature>org.eclipse.jdt.core.javanature</nature>
		<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
	</natures>
</projectDescription>



这样让项目 支持 myeclipse web project ,  支持 google gwt eclipse 项目 上面代码 中还支持了 cypal studio

这样我们就可以使用 myeclipse的强大功能 , google gwt eclipse插件的编译等功能。

通过google 编译  再 myeclipse 布署到 WEB容 器。

只是编译速度需要一定的耐心。。
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics