The ServletConfig object has four methods.
##getInitParameter, getInitParameterNames, getServletName
(1) getInitParameter, getInitParameterNames are used to obtain the parameters in Web.xml Name, parameter value. (2)getServletName Gets the Servlet-name in Web.xml. ExampleThe following is the file content of 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_4_0.xsd" version="4.0"> <servlet> <servlet-name>TestServletConfig</servlet-name> <servlet-class>com.djun.serveleMapping.TestServletConfig</servlet-class> <!--配置Servlet的初始化参数--> <!-- 如何获取初始化的参数? 1、getInitParameter(String name) Returns a String containing the value of the named initialization parameter, or null if the parameter does not exist. 2、 getInitParameterNames() Returns the names of the servlet's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the servlet has no initialization parameters. --> <init-param> <param-name>username</param-name> <param-value>admin</param-value> </init-param> <init-param> <param-name>passworld</param-name> <param-value>admin</param-value> </init-param> <!-- 指定Servlet JSP被创建的时机 若数值 a<0,则仅在第一次的时候被创建。 若 a>=0 , 则在当前应用被Servlet容器加载时创建实例 数值越小越早被创建 --> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>TestServletConfig</servlet-name> <!--只要后缀为html的文件都由该类处理--> <url-pattern>/servletConfig</url-pattern> </servlet-mapping> </web-app>
import javax.servlet.*; import java.io.IOException; import java.util.Enumeration; public class TestServletConfig implements Servlet { @Override public void init(ServletConfig servletConfig) throws ServletException { System.out.println("Init TestServletConfig..."); System.out.println("-----------执行getInitParameter--------"); String username = servletConfig.getInitParameter("username"); String passworld = servletConfig.getInitParameter("passworld"); System.out.println("username: " + username+"\n"+"password : "+passworld); System.out.println("----------执行getInitParameterNames------"); Enumeration<String> names = servletConfig.getInitParameterNames(); while(names.hasMoreElements()){ String name = names.nextElement(); String value = servletConfig.getInitParameter(name); System.out.println("username: " + name+"\n"+"password : "+value); } String servletName = servletConfig.getServletName(); System.out.println(servletName); } @Override public ServletConfig getServletConfig() { return null; } @Override public void service(ServletRequest servletRequest, ServletResponse servletResponse) throws ServletException, IOException { System.out.println("TestServletConfig...."); } @Override public String getServletInfo() { return null; } @Override public void destroy() { } }
getServletContext
(1) Servlet for each Web The application creates a corresponding ServletContext object. The ServletContext object is included in the ServletConfig object. A reference to the ServletContext object can be returned by calling the ServletContext.getServletContext() method.(2) getContextPath()
System.out.println("getContextPath() -----------"); String contextPath = servletContext.getContextPath(); System.out.println(contextPath); String fileName = "application.properties"; try { File file = new File(realPath+ "/" + fileName); ClassLoader classLoader = getClass().getClassLoader(); InputStream is = classLoader.getResourceAsStream(realPath + "/" + fileName); System.out.println(realPath+ "/" + fileName); System.out.println("1. "+ is); } catch (Exception e) { e.printStackTrace(); }
The above is the detailed content of Servlet JSP ServletConfig object. For more information, please follow other related articles on the PHP Chinese website!

Start Spring using IntelliJIDEAUltimate version...

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

Java...

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1
Powerful PHP integrated development environment

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool