首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏全栈程序员必看

    idea社区版创建web项目_不用框架写一个web项目

    xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"> <display-name>xss</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp </welcome-file> </welcome-file-list> </web-app> 此时 http://xmlns.jcp.org/xml/ns/javaee 和 http://xmlns.jcp.org

    1.9K20编辑于 2022-11-08
  • 来自专栏关忆北.

    Servlet执行流程

    <welcome-file-list> <welcome-file>index.html</welcome-file> <! -- 设置访问首页,index.html可以改成你要进入的网站首页--> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp </welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file > <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <description></

    91432发布于 2020-10-15
  • 来自专栏故久

    web项目使用cxf+spring搭建WebService,并部署到远程

    ="WebApp_ID" version="3.1"> <display-name>CXFWebservice</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> <context-param> <param-name>contextConfigLocation

    81220发布于 2020-06-04
  • 来自专栏HaC的技术专栏

    自己使用keytool生成证书 和 购买 商业SSL证书,然后并配置Tomcat 的 https

    >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp </welcome-file> </welcome-file-list> 然后重启Tomcat。 找到tomcat目录下的conf/web.xml文件,修改首页: <welcome-file-list> <welcome-file>HaCresume.html</welcome-file > <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <

    3K10发布于 2020-12-30
  • 来自专栏猿计划

    Servlet生命周期

    WebApp_ID" version="3.1"> <display-name>JavaWeb_HelloWord</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> <!

    46330发布于 2020-07-28
  • 来自专栏姚红专栏

    <welcome-file-list>标签的控制作用以及在springmvc中此标签的的配置方式

    我们在写安全性较高的网站时必然会对网站的入口进行限制, 而在这其中其关键作用的就是网站的根目录下WEB-INF中的web.xml中 <welcome-file-list> <welcome-file >index.jsp</welcome-file> </welcome-file-list> 它的作用就是定制首页,你也可能会问我想定制多个行吗? 答案是可以的 <welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>myjsp.jsp</welcome-file

    2.9K20发布于 2019-09-11
  • 来自专栏HaC的技术专栏

    【教你搭建服务器系列】部署个人简历网站项目(三)

    找到tomcat目录下的conf/web.xml文件,修改首页: <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp </welcome-file> </welcome-file-list> 然后重启Tomcat。

    1.6K10发布于 2020-12-30
  • 来自专栏web编程技术分享

    用eclispe开发web项目初步

    3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>QQ</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> </web-app> welcome-file-list表示项目的欢迎页。

    77390发布于 2018-05-17
  • 来自专栏别先生

    Servlet开发技术,创建,以及Servlet的配置,web.xml的配置

    "WebApp_ID" version="3.0"> 3 <display-name>web02</display-name> 4 <welcome-file-list> 5 <welcome-file >index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp </welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file > 10 <welcome-file>default.jsp</welcome-file> 11 </welcome-file-list> 12 <servlet> 13 <

    89790发布于 2017-12-29
  • 来自专栏java初学

    j2ee—框架(2):Servlet+JSP实现基本的登录功能(v2.0)

    WebApp_ID" version="3.0"> 3 <display-name>Controller</display-name> 4 <welcome-file-list> 5 <welcome-file >index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp </welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file > 10 <welcome-file>default.jsp</welcome-file> 11 </welcome-file-list> 12 13 </web-app> login.jsp

    998130发布于 2018-05-14
  • 来自专栏猿计划

    Servlet配置初始值,并获取初始值

    WebApp_ID" version="3.1"> <display-name>JavaWeb_HelloWord</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> <!

    97020发布于 2020-07-28
  • 来自专栏别先生

    SpringMVC的初始

    version="3.1"> 3 <display-name>springMVC01_20170408</display-name> 4 <welcome-file-list> 5 <welcome-file >index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp </welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file > 10 <welcome-file>default.jsp</welcome-file> 11 </welcome-file-list> 12 13 <!

    72490发布于 2018-01-02
  • 来自专栏一个会写诗的程序员的博客

    Spring MVC中,applicationContext.xml [ServletName]-servlet.xml配置文件在web.xml中的配置详解Spring MVC中,applicatio

    _3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>SpringMVC</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp </welcome-file> </welcome-file-list> <context-param> <param-name>contextConfigLocation</param-name> <

    2.4K30发布于 2018-08-20
  • 来自专栏别先生

    Struts2+Spring+Hibernate+Jbpm技术实现Oa(Office Automation)办公系统第一天框架搭建

    >index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp </welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file >index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp </welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file > 10 <welcome-file>default.jsp</welcome-file> 11 </welcome-file-list> 12 13 <!

    1.1K60发布于 2018-01-02
  • 来自专栏Vincent-yuan

    java之spring mvc之helloworld

    servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> </web-app> 上面代码中标识的 springmvc 为前端控制器 4.

    79120发布于 2019-09-11
  • 来自专栏全栈程序员必看

    Spring中,applicationContext.xml 配置文件在web.xml中的配置详解

    " id="WebApp_ID" version="3.0"> <display-name>SpringMVC</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> <context-param> <param-name>contextConfigLocation

    3.3K20编辑于 2022-09-13
  • 来自专栏别先生

    第一个Struts2实例之hello world!

    version="3.0"> 3 <display-name>struts2_20170219</display-name> 4 <welcome-file-list> 5 <welcome-file >index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp </welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file > 10 <welcome-file>default.jsp</welcome-file> 11 </welcome-file-list> 12 13 14 <!

    1.5K90发布于 2017-12-29
  • 来自专栏web编程技术分享

    用SpringBoot搭建简单电商项目 01

    id="WebApp_ID" version="3.0"> <display-name>java520.top</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> </web-app> 在pom文件中添加上SpringBoot的父依赖: <parent>

    2.4K80发布于 2018-05-17
  • 来自专栏别先生

    Servlet过滤器,Servlet过滤器创建和配置

    "WebApp_ID" version="3.0"> 3 <display-name>web02</display-name> 4 <welcome-file-list> 5 <welcome-file >index.html</welcome-file> 6 <welcome-file>index.htm</welcome-file> 7 <welcome-file>index.jsp </welcome-file> 8 <welcome-file>default.html</welcome-file> 9 <welcome-file>default.htm</welcome-file > 10 <welcome-file>default.jsp</welcome-file> 11 </welcome-file-list> 12 <servlet> 13 <servlet-name

    1.3K90发布于 2017-12-29
  • 来自专栏向全栈出发

    JSP 开发环境搭建与项目运行(二)

    WebApp_ID" version="3.1"> <display-name>yqb_test_webserver</display-name> <welcome-file-list> <welcome-file >index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file > <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file >default.jsp</welcome-file> </welcome-file-list> <servlet> <description>This is the description

    1.6K30发布于 2020-09-10
领券