JAVA Apache Wicket Upload Setup

The ShieldUI Upload Apache Wicket component offers streamlined setup and deployment of our libraries.

Since it is a wrapper of our JavaScript Upload component, you need to include the references to the CSS and JavaScript resources in the HEAD section of your webpage:

<!DOCTYPE html>
<html>
<head>
<title>ShieldUI Upload</title>
<meta charset="utf-8" />

<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/shieldui-all.min.js"></script>

</head>
<body>

<input type="file" name="files" wicket:id="files" />

</body>
</html>

Then init the component and add it to your wicket page like in the following example:

Upload files = new Upload("files");
add(files);
        
files.getOptions()
    .setAsync(new UploadOptions.AsyncOptions()
        .setEnabled(true)
        .setSave(new UploadOptions.SaveOptions().setUrl("/upload/save"))
        .setRemove(new UploadOptions.RemoveOptions().setUrl("/upload/remove")));

To see more information on this wrapper, please refer to the following startup guide.

For examples of server-side scripts, handling the upload, please refer to this page.