Hello World!——内嵌Jetty支持Servlet

Hello World!——内嵌Jetty支持Servlet

文章目录

    • Hello World!——内嵌Jetty支持Servlet
    • 一、引入依赖包
    • 二、配置支持servlet, jsp, jstl, el表达式
        • 1、支持servlet
        • 2、支持jsp
        • 3、支持jstl和el表达式
    • 三、增加servlet、web.xml和index.jsp
        • 1、内嵌Jetty的启动类
        • 2、Servlet的demo类
        • 3、web.xml配置
        • 4、jsp页面
    • 四、运行效果

一、引入依赖包

内嵌Jetty支持servlet、jsp, jsp支持jstl和el表达式,除了需要引入jetty-webapp之外,还需要引入apache-jsp和apache-jstl, jsp也是编译成servlet。


<dependency>
	<groupId>org.eclipse.jettygroupId>
	<version>9.4.14.v20181114version>
	<artifactId>jetty-webappartifactId>
dependency>
<dependency>
	<groupId>org.eclipse.jettygroupId>
	<version>9.4.14.v20181114version>
	<artifactId>apache-jspartifactId>
dependency>
<dependency>
	<groupId>org.eclipse.jettygroupId>
	<version>9.4.14.v20181114version>
	<artifactId>apache-jstlartifactId>
dependency>

二、配置支持servlet, jsp, jstl, el表达式

1、支持servlet

内嵌jetty支持servlet,只需要引入WebAppContext作为handler就可以支持


// 用WebAppContext可以支持servlet
WebAppContext webApp = new WebAppContext();
webApp.setContextPath("/");
webApp.setResourceBase("./src/main/webapp");

2、支持jsp

但是, 要支持jsp还需要配置两个Configuration

// 支持JSP必须增加以下配置
Configuration.ClassList classlist = Configuration.ClassList.setServerDefault(server);
classlist.addBefore("org.eclipse.jetty.webapp.JettyWebXmlConfiguration",
				"org.eclipse.jetty.annotations.AnnotationConfiguration");


<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=$Encode">
    <title>show pagetitle>
head>
<body>
	<h1>Hello worldh1>
    <% out.println("<h2>Hello JSPh2>"); %>
body>
html>

可以正常输出Hello World和Hello JSP。

3、支持jstl和el表达式

如果在jsp中需要用到jstl和el表达式, 还需要配置容器引入的包格式:

//支持jstl和其他tag必须设置以下配置
webApp.setAttribute(
    "org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern",
        ".*/[^/]*servlet-api-[^/]*\\.jar$|.*/javax.servlet.jsp.jstl-.*\\.jar$|.*/[^/]*taglibs.*\\.jar$" );

jsp文件头中还需要特殊处理下, 增加配指令,否则会忽略el表达式:

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" isELIgnored="false" %>

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 
  
  
  

<%@ … %> 是指令

<% … %> 是jsp脚本

是jstl标签

${…} 是el表达式

三、增加servlet、web.xml和index.jsp

具体示例代码如下:

1、内嵌Jetty的启动类

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.webapp.Configuration;
import org.eclipse.jetty.webapp.WebAppContext;
import lombok.extern.slf4j.Slf4j;

@Slf4j
public class JettyWebAppApplication {
	public static void main(String[] args) {
		Server server = new Server(8080);

		// 支持JSP必须增加以下配置
		Configuration.ClassList classlist = Configuration.ClassList.setServerDefault(server);
		classlist.addBefore("org.eclipse.jetty.webapp.JettyWebXmlConfiguration",
				"org.eclipse.jetty.annotations.AnnotationConfiguration");
		
		// 用WebAppContext可以支持servlet
		WebAppContext webApp = new WebAppContext();
		webApp.setContextPath("/");
		webApp.setResourceBase("./src/main/webapp");
		// 支持jstl和其他tag必须设置以下配置
		webApp.setAttribute("org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern",
			".*/[^/]*servlet-api-[^/]*\\.jar$|.*/javax.servlet.jsp.jstl-.*\\.jar$|.*/[^/]*taglibs.*\\.jar$");

		server.setHandler(webApp);

		try {
			server.start();
			server.dumpStdErr();
			server.join();
		} catch (Exception e) {
			log.error(e.getMessage(), e);
		}
	}
}

2、Servlet的demo类

import java.io.IOException;
import javax.servlet.GenericServlet;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import com.alibaba.fastjson.JSON;
import lombok.extern.slf4j.Slf4j;

@Slf4j
public class HelloWorldServletDemo extends GenericServlet {
	private static final long serialVersionUID = -1522387682150936960L;

	@Override
	public void init() throws ServletException {
		super.init();
	}

	@Override
	public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException {
		log.info("remote: {} params: {} ", req.getRemoteAddr(), JSON.toJSONString(req.getParameterMap()));
		res.getWriter().write("

Hello World Servlet

"
); } }

3、web.xml配置



<web-app>
  <display-name>Archetype Created Web Applicationdisplay-name>
  <servlet>
        <servlet-name>helloservlet-name>
        <servlet-class>org.demo.hello.world.jetty.servlet.HelloWorldServletDemoservlet-class>
        <init-param>
            <param-name>debugparam-name>
            <param-value>0param-value>
        init-param>
        <init-param>
            <param-name>listingsparam-name>
            <param-value>falseparam-value>
        init-param>
        <load-on-startup>1load-on-startup>
    servlet>

 	
    <servlet-mapping>
        <servlet-name>helloservlet-name>
        <url-pattern>/hellourl-pattern>
    servlet-mapping>
web-app>

4、jsp页面


<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" isELIgnored="false" %>




    
    show page


	

Hello world

<% out.println("

Hello JSP

"); %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

四、运行效果

运行效果如图

Hello World!——内嵌Jetty支持Servlet_第1张图片

你可能感兴趣的:(Hello,World系列)