jsp ページからアプレットを実行すると、Spring セキュリティのためにマッピングが変更されます。Spring MVC を使用して Maven プロジェクトを作成しました。これが私のJspページです
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<HTML>
<HEAD>
<TITLE>Java applet example - Passing applet parameters to Java applets</TITLE>
</HEAD>
<BODY>
<object type="application/x-java-applet" height="300" width="550">
<PARAM NAME="Downloadfile" VALUE="${Downloadfile}">
<PARAM NAME="Tempstorage" VALUE="${Tempstorage}">
<param name="archive" value="/webapps/pages/Applet.jar" />
<param name="code" value="MainApplet8" />
</object>
</BODY>
</HTML>
/src/webapps/pages/Applet.jar に Applet.jar を配置しました。
ここに私の MainApplet.java コードがあります:
public class MainApplet8 extends Applet
{
public void init()
{
String SourceUrl;
final String DestinationPath = getParameter("Tempstorage");
SourceUrl = getParameter("Downloadfile");
System.out.println(SourceUrl + "," + DestinationPath);
File myFile = (File) AccessController.doPrivileged(new PrivilegedAction() {
public Object run()
{
return new File(DestinationPath);
}
});
if (SourceUrl != null && DestinationPath != null) {
try {
URL url = new URL(SourceUrl);
URLConnection con = url.openConnection();
FileOutputStream ot = new FileOutputStream(myFile);
BufferedInputStream in = new BufferedInputStream(
con.getInputStream());
int n;
while ((n = in.read()) != -1) {
ot.write(n);
}
in.close();
ot.close();
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "AA::::" + e.getMessage());
e.printStackTrace();
}
try {
System.out.println("Executing the application");
Desktop.getDesktop().open(new File(DestinationPath));
int processExit = 0;
} catch (Exception e) {
JOptionPane.showMessageDialog(null, "A::" + e.getMessage());
e.printStackTrace();
}
}
}
}
Eclipse のエラー ログ:
WARN : org.springframework.web.servlet.PageNotFound - 名前が 'appServlet' の DispatcherServlet で、URI [/eSenseReengineering/tc-teacher/rs/MainApplet8] の HTTP リクエストのマッピングが見つかりません
注:次のメソッドからJspページをリダイレクトしています:
@RequestMapping(value = "rs/openFile", method = RequestMethod.GET)
public String openFile(@RequestParam(value = "path", required = true) String path, @RequestParam(value="objectName", required = true) String objectName,@RequestParam(value="objectType", required = true) String objectType, Model model, HttpServletRequest request) {
String destinationPath = "D:/temp/"+objectName+"."+objectType;
String hostURL = request.getRequestURL().toString();
hostURL = hostURL.substring(0, hostURL.indexOf(Constants.contextName));
String sourcePath = hostURL+ path;
request.setAttribute("Downloadfile", sourcePath);
request.setAttribute("Tempstorage",destinationPath);
return "test";
}