重定向(Redirect)
// 实现方式
resp.setStatus(302);
resp.setHeader("location","/web-demo/demo1");
// 或者使用
resp.sendRedirect("/web-demo/demo1");
浏览器地址栏路径会发生变化,浏览器是发送了两次请求
而对于请求转发,浏览器只发送了一次请求,浏览器地址栏路径不会发生变化
重定向还可以重定向到服务器外部的资源,比如:
resp.sendRedirect("http://www.guet.edu.cn");
响应数据
resp.setHeader("content-type","text/html;charset=utf8");
PrintWriter writer = resp.getWriter();
writer.write("你好啊");
writer.write("<h1>单纯的幸福呢</h1>");
响应字节数据
resp.setHeader("content-type","text/html;charset=utf8");
ServletOutputStream outputStream = resp.getOutputStream();
outputStream.write("你好".getBytes());
字节流乱码与字符流乱码
SqlSessionFactory抽取工具类
public class SqlSessionFactoryUtils {
private static SqlSessionFactory sqlSessionFactory;
static{
// 静态代码块, 随着类的加载自动执行, 且只执行一次
try{
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
}catch (IOException e){
e.printStackTrace();
}
}
public static SqlSessionFactory getSqlSessionFactory(){
return sqlSessionFactory;
}
}
这样就不会重复创建 SqlSessionFactory 对象了
以上就是极悦小编介绍的"response重定向,数据的相应方式",希望对大家有帮助,如有疑问,请在线咨询,有专业老师随时为您务。
你适合学Java吗?4大专业测评方法
代码逻辑 吸收能力 技术学习能力 综合素质
先测评确定适合在学习