0

我正在尝试从数据库中检索一个 blob 并在 jsp 中显示它这是代码:

response.setContentType("image/bmp");
con = dbMon.connect(Con_id);
stmt = con.createStatement(); 
rs = stmt.executeQuery(sql);   
while (rs != null && rs.next()) {
  out.clear(); 
  OutputStream os = response.getOutputStream(); 
  os.write(rs.getBytes("IMAGE"));  
  out.flush(); 
  dbMon.close(con);
}

代码在我们使用 http 的 uat 环境中运行良好,但在使用 HTTPS 的生产环境中运行失败安全交付?此网页包含不会使用安全 HTTPS 连接交付的内容,这可能会危及整个网页的安全性。”

  1. 如果我选择 Yes ,图像将不会显示。
  2. 如果我选择否,只会显示一个糟糕的图像标志(红十字)有人知道吗?请帮忙谢谢
4

0 回答 0