📄 initservlet.java
字号:
package servlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.ServletException;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 2007-10-26
* Time: 11:43:48
* To change this template use File | Settings | File Templates.
*/
public class InitServlet extends HttpServlet {
public void init() throws ServletException {
String a = this.getInitParameter("dbUrl");
System.setProperty("dbUrl",a);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -