com.fastchar.out.FastOutJsp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
package com.fastchar.out;
import com.fastchar.core.FastAction;
import com.fastchar.core.FastChar;
/**
* 响应输出jsp
*/
public class FastOutJsp extends FastOut {
@Override
public void response(FastAction action) throws Exception {
setDescription("forward to jsp '" + data + "' ");
action.getRequest().getRequestDispatcher(String.valueOf(data))
.forward(action.getRequest(), action.getResponse());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy