Spring运行在tomcat上

2021-06-20 14:05

阅读:399

YPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

标签:第一个   get   text   classpath   frame   ack   pack   meta   html 4.01   

在Spring第一个Demo程序的基础上

第一步:添加web.xml文件, web.xml文件放在/WEB-INF下,内容如下

contextConfigLocationclasspath:applicationContext.xmlorg.springframework.web.context.ContextLoaderListener

  该xml在tomcat运行时,会被加载,并且会把applicationContext.xml进行加载

第二步:添加StudentServlet类

package com.fd.spring.servlet;

import java.io.IOException;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;

@WebServlet("/student")
public class StudentServlet extends HttpServlet{
	
	@Override
	public void init(ServletConfig config) throws ServletException {
		super.init(config);
		WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
		
	}
	
	protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		System.out.println("service...");
		req.setAttribute("list", "123");
		req.getRequestDispatcher("index.jsp").forward(req, resp);
	}
}

  这时运行run on server的话,在页面上访问 http://localhost:8080/SpringDemo/student,在console上可以看到如下信息

技术分享图片

 

第三步:继续添加index.jsp

Insert title here

this is spring on Tomcat

  再次运行出现如下页面

技术分享图片

 

Spring运行在tomcat上

标签:第一个   get   text   classpath   frame   ack   pack   meta   html 4.01   

原文地址:https://www.cnblogs.com/spark-quant/p/9688642.html


评论


亲,登录后才可以留言!