⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 myfacesservlet.java

📁 一个使用struts+hibernate+spring开发的完的网站源代码。
💻 JAVA
字号:
/* * Copyright 2004 The Apache Software Foundation. *  * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.apache.myfaces.webapp;import org.apache.commons.logging.Log;import org.apache.commons.logging.LogFactory;import javax.faces.webapp.FacesServlet;import javax.servlet.*;import java.io.IOException;/** * Derived FacesServlet that can be used for debugging purpose * and to fix the Weblogic startup issue (FacesServlet is initialized before ServletContextListener). * * @author Manfred Geiler (latest modification by $Author: matze $) * @version $Revision: 1.19 $ $Date: 2004/10/13 11:51:01 $ * $Log: MyFacesServlet.java,v $ * Revision 1.19  2004/10/13 11:51:01  matze * renamed packages to org.apache * * Revision 1.18  2004/07/16 15:16:10  royalts * moved org.apache.myfaces.webapp.webxml and org.apache.util.xml to share src-tree (needed WebXml for JspTilesViewHandlerImpl) * * Revision 1.17  2004/07/01 22:05:11  mwessendorf * ASF switch * * Revision 1.16  2004/04/16 13:21:39  manolito * Weblogic startup issue * */public class MyFacesServlet    extends FacesServlet{    private static final Log log = LogFactory.getLog(MyFacesServlet.class);    public void init(ServletConfig servletConfig)        throws ServletException    {        //Check, if ServletContextListener already called        ServletContext servletContext = servletConfig.getServletContext();        Boolean b = (Boolean)servletContext.getAttribute(org.apache.myfaces.webapp.StartupServletContextListener.FACES_INIT_DONE);        if (b == null || b.booleanValue() == false)        {            log.warn("ServletContextListener not yet called");            org.apache.myfaces.webapp.StartupServletContextListener.initFaces(servletConfig.getServletContext());        }        super.init(servletConfig);        log.info("MyFacesServlet for context '" + servletConfig.getServletContext().getRealPath("/") + "' initialized.");    }    public void service(ServletRequest request, ServletResponse response)            throws IOException,                   ServletException    {        if (log.isTraceEnabled()) log.trace("MyFacesServlet service start");        super.service(request, response);        if (log.isTraceEnabled()) log.trace("MyFacesServlet service finished");    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -