IntelliJ IDEA 14.03 运行servlet前怎样设置web.xml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IntelliJ IDEA 14.03 运行servlet前怎样设置web.xml相关的知识,希望对你有一定的参考价值。

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
    <servlet>
        <servlet-name>Servlet</servlet-name>
        <servlet-class>Servlet.MyServlet</servlet-class> //<servlet-class>中的内容是固定的,必须是"Servlet所在包的名称.Servlet类的名称"
    </servlet>
    <servlet-mapping>
        <servlet-name>Servlet</servlet-name>
        <url-pattern>/Servlet/MyServlet</url-pattern>
    </servlet-mapping>
</web-app>

新建的四个标签中servlet-class标签的内容是固定的,不能随意修改

servlet-name标签中的内容自定,但两个servlet-name标签中的内容必须相同

url-pattern标签中的内容自定,如例子中url-pattern为 /Servlet/MyServlet ,tomcat端口(默认)为8080,

则启动项目后,在浏览器中输入,即可访问到servlet所定义的页面

参考技术A <?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name></display-name>
<servlet>
<description>This is the description of my J2EE component</description>
<display-name>This is the display name of my J2EE component</display-name>
<servlet-name>LoginServlet</servlet-name>
<servlet-class>LoginServlet</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>LoginServlet</servlet-name>
<url-pattern>/LoginServlet</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>本回答被提问者和网友采纳

IntelliJ IDEA 配置运行程序

      IntelliJ IDEA 对于Javaer开发来说还是很nice的,就是第一次用可能配置项有点生疏,这里就记录一下IntelliJ IDEA 配置运行程序。

  1. 点击Edit Config...

  IntelliJ IDEA 配置运行程序

  2.点击Configure...   然后设置本地Tomcat路径

  IntelliJ IDEA 配置运行程序

 

  3.点击Deployment,然后点击+按钮,在弹出框里选择启动项。(ps:图中工程名均已打码处理),选中启动项点击弹出框的"OK"按钮。Application context可以设置每次打开的默认路径

  IntelliJ IDEA 配置运行程序

  4.给你的这次设置起个名字

  IntelliJ IDEA 配置运行程序

  5.点击绿色三角即可运行, 旁边的小虫子按钮是debug

  IntelliJ IDEA 配置运行程序

 

以上是关于IntelliJ IDEA 14.03 运行servlet前怎样设置web.xml的主要内容,如果未能解决你的问题,请参考以下文章

IntelliJ IDEA的使用入门

intellij Idea运行时经常卡住

IntelliJ IDEA设置JVM运行参数

为啥intellij idea运行java程序就闪退?

为啥intellij idea运行java程序就闪退?

IntelliJ IDEA 配置运行程序