|
|
|
|
@ -0,0 +1,35 @@
|
|
|
|
|
package mvc进阶1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* JSP椋庢牸瑙嗗浘瀹炵幇绫? 妯℃嫙JSP瑙嗗浘娓叉煋閫昏緫锛屽皢鏁版嵁宓屽叆HTML
|
|
|
|
|
* @author The Administrator
|
|
|
|
|
* @version 1.0
|
|
|
|
|
* @created 26-10月-2025 22:52:13
|
|
|
|
|
*/
|
|
|
|
|
class JspView implements View {
|
|
|
|
|
|
|
|
|
|
public JspView(){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void finalize() throws Throwable {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param data
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public String render(Map<String, Object> data){
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 娓叉煋瑙嗗浘鍐呭<EFBFBD>
|
|
|
|
|
* @return 娓叉煋鍚庣殑瀛楃<EFBFBD>涓诧紙HTML/绉诲姩绔疷I绛夛級
|
|
|
|
|
*/
|
|
|
|
|
public String render(){
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
}//end JspView
|