📄 systeminitservlet.java
字号:
package com.xdf.marry.servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import com.xdf.marry.bo.ServiceLocator;
public class SystemInitServlet extends HttpServlet {
public void init() throws ServletException {
ApplicationContext wac = WebApplicationContextUtils.
getRequiredWebApplicationContext(this.getServletContext());
ServiceLocator.setCtx(wac);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -