📄 urlmanager.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -