urlmanager.java

来自「pojo的mvc框架」· Java 代码 · 共 30 行

JAVA
30
字号
package xyz.frame.url;import javax.servlet.ServletContext;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/** * Responds to uri requests by giving back a logic request: a component and * action that should be executed. *  * @author Guilherme Silveira */public interface URLManager {	/**	 * Returns the logic request	 * 	 * @param context	 *            the servlet context	 * 	 * @return the logic request associated to this request uri	 * @throws InvalidURLException	 *             invalid url was requested	 */	public InternalLogicRequest getLogicRequest(HttpServletRequest req,			HttpServletResponse res, ServletContext context)			throws InvalidURLException;}

⌨️ 快捷键说明

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