Java Dynamic Web Project
程序员文章站
2022-06-03 11:33:19
...
Java Dynamic Web Project
1、创建Dynamic Web Project
2、设置Target runtime,web容器即Apache Tomcat以及容器配置
3、source folder
4、web module,记得勾选产生web.xml部署描述文档,点击finish按键完成工程创建
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>dynamicwebprj</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>
5、右击WebContent添加 java server page — index.jsp
web.xml中已配置文档,程序运行时界面
index.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>dynamic web project</title>
</head>
<body>
Hello,World!
<%="Hello World!" %>
<% System.out.println("hello world!"); %>
</body>
</html>
6、运行工程
7、配置server
8、添加工程到web容器,点击finish运行
运行结果:
上一篇: 微信分享页面JSSDK报错,求排错方法?
下一篇: php json转数组出错求助
推荐阅读
-
Linux部署Java-Web,mvn package出现COMPILATION ERROR :Failed to execute goal org.apache.maven.plugins:mave
-
java web开发,bean数据放在request、response还是servletcontext中?
-
linux下java web开发环境搭建
-
Java web Filter, Strurs2 Interceptor 和 SpringMVC Interceptor 三者之间的联系与区别
-
linux下java web开发环境搭建
-
java web整合海康威视录像机摄像SDK
-
Java web页面静态化_html/css_WEB-ITnose
-
servlet之web路径问题_动力节点Java学院整理
-
Java 获取Web项目相对webapp地址的实例
-
ServletContext读取web资源_动力节点Java学院整理