浏览 2994 次
锁定老帖子 主题:求教GWT项目如何发布到web容器
该帖已经被评为新手帖
|
|
---|---|
作者 | 正文 |
发表时间:2008-06-10
我试着在tomcat下发布了,但无法进行远程调用,有人说的web.xml没配置好 恳请前辈指导,web.xml应该如何写,如果想在jboss下发布应该如何打包/设置路径? 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间: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容 器。 只是编译速度需要一定的耐心。。 |
|
返回顶楼 | |