首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

[web工程]创办web工程

2012-09-14 
[web工程]创建web工程返回:[web工程]Struts2+Spring3.1+Hibernate3.6的集成下一步:[web工程]集成struts2 m

[web工程]创建web工程

返回:[web工程]Struts2+Spring3.1+Hibernate3.6的集成

下一步:[web工程]集成struts2 mvc

?

创建web工程

?

    打开eclipse创建java project:demo,如图

    [web工程]创办web工程
    ?创建web工程结构:即

    WebRoot

    ? |-WEB-INF

    ? ? ?|- classes

    ? ? ?|- lib

    ? ? ?|- web.xml

    ? |- index.jsp

    ??如图:

    [web工程]创办web工程

    配置java build path,让编译后的class定位到WebRoot/WEB-INF/classes目录,如图:

    [web工程]创办web工程
    ?

    ?web.xml内容如下:
    ?
    index.jsp内容如下:
    ?通过配置文件demo.xml发布web站点到tomcat下:
    tomcat路径下conf/Catalina/localhost/demo.xml,内容如下:
    ?
    启动tomcat访问index.jsp看看,应该会出现:

    我爱编程!正在跳转到登录页面。。。
    到此一个java的jsp web站点就搭建完毕下载demo

?

返回:[web工程]Struts2+Spring3.1+Hibernate3.6的集成

下一步:[web工程]集成struts2 mvc


1 楼 yaloo 2011-10-20   大哥,我像这样做了,但是报错啊。如下:

警告:A docBase D:\apache-tomcate\webapps\workspace\demo\WebRoot inside the host appBase has been specified, and will be ignored
错误:Error starting static Resources 2 楼 skzr.org 2011-10-21   yaloo 写道大哥,我像这样做了,但是报错啊。如下:

警告:A docBase D:\apache-tomcate\webapps\workspace\demo\WebRoot inside the host appBase has been specified, and will be ignored
错误:Error starting static Resources
呵呵,初学tomcat编程吧。

首先tomcat有个默认的应用加载目录:D:\apache-tomcate\webapps
意思是,webapps下的每个文件夹就是web的一个应用。

而你的工作目录是:D:\apache-tomcate\webapps\workspace

所以不行。

你把eclipse工作空间移动到其他目录即可比如:
move  D:\apache-tomcate\webapps\workspace到 D:\workspace

热点排行