File Upload on Google App Engine using struts2

Few months back, i wrote a blog on Creating Struts2 application on Google App Engine and some developers asked me how to upload a file using struts2 on google app engine. At that point of time, i was playing with google app engine and was not very clear about the limitation google app engine imposes. Google App Engine does not allow your application to write a file to their application server. This was a very big limitation as most of the application require some sort of file upload. So, i decided to find some way by which i can achieve the upload functionality and i found this link. But, i didn’t wanted to use servelt in my code because i was trying to build a application using struts 2.I wanted to work with actions and use FileUploadInterceptor. With the current implementation of struts 2 FileUploadInterceptor, i can’t do fileupload because it writes file to server.So, after spending some time with struts2 code, i wrote my own extension for Struts 2.This post will discuss how you can use small struts2 wrapper framework, i created for google app engine in your application to do fileupload and more.

Prerequisites for starting Struts2 Application on Google App Engine

Before you start building your sample application on google app engine using struts 2 you will need the following:-

  1. Google App Engine runs on java 5 and above so if necessary, download and install the Java SE Development Kit (JDK) for your platform and for mac users download and install the latest version.
  2. In this example we will be using Eclipse as our ide. So if necessary, download eclipse and google app engine plugin for eclipse.You will also need to download the google java app engine SDK. For more information you can refer to installing the java SDK for google app engine.
  3. Download the latest release of Struts2 framework.If you want to learn struts 2 a very good reference is struts 2 in action book.Please buy Struts 2 in Action.
  4. Download the latest release of struts2-gae framework.It is an wrapper around struts 2 for google app engine.

Step by Step procedure to create Struts2 File Upload application on Google App Engine.

Step 1: Create a new project by clicking the New Web Application Project button in the toolbarnew_app_button.

1

Step 2 : Give the project name say struts2-fileupload as we are going to create a simple file upload application. Enter package name as com.login and uncheck “Use Google Web Toolkit,” and ensure “Use Google App Engine” is checked and click the finish button.

s1

Step3 : When you click the finish button you will get a sample HelloWorld application, which you can run going in the Run menu, select Run As > Web Application.By default application will run at port 8080, you can view the sample application at http://locahost:8080. For more information on the sample google web application created by the plugin you can refer to Google java app engine documentation .Please keep in mind that intent of this document is not to provide developers the overview of Google App engine for Java.

Step4 : By now you are ready with the google app engine infrastructure and we can move to the next step of creating a file upload application in Struts 2.

  • for creating a struts 2 application you will need to first add the required dependencies to the struts2-fileupload project. The required struts 2 jars are below mentioned and you can find these jars in struts2 package you downloaded inside the lib folder :-
    • commons-fileupload-1.2.1.jar
    • commons-io-1.3.2.jar
    • commons-logging-1.1.jar
    • freemarker-2.3.13.jar
    • ognl-2.6.11.jar
    • struts2-core-2.1.6.jar
    • struts2-gae-0.1.jar
    • xwork-2.1.2.jar
  • Add these dependencies in your eclipse java build path.

s2

  • Add these dependencies in the war/WEB-INF/lib folder so that these jars gets deployed along with your application.
  • First step in creating a struts 2 application is configuring the web.xml (deployment descriptor) which is located in WEB-INF folder.You can remove the servlet declaration from web.xml as we will not be needing this.In the last post,we configured FilterDispatcher(this is theFilterDispatcher which comes with struts2) but in this application we need to add the GaeFilterDispatcher(this is provided by struts 2 extension framework for GAE). We will declare GaeFilterDispatcher in web.xml, because in struts2 every request goes pass through a FilterDispatcher, which will invoke the appropriate action corresponding to the URL mapping.So our web.xml will look like :-
01<?xml version="1.0" encoding="utf-8"?>
05xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
07<filter>
08<filter-name>struts2-gae</filter-name>
09<filter-class>com.struts2.gae.dispatcher.GaeFilterDispatcher</filter-class>
10</filter>
11<filter-mapping>
12<filter-name>struts2-gae</filter-name>
13<url-pattern>/*</url-pattern>
14</filter-mapping>
15<welcome-file-list>
16<welcome-file>index.html</welcome-file>
17</welcome-file-list>
18</web-app>
  • To start we will be creating a jsp fileupload page using struts 2 tag library and we will call file upload page from index.html.To call the fileupload page there are two ways first, we can directly call the upload.jsp page from link second, we can calling it through struts. We will be taking the second step as this will show you how to configure actions when you dont need to invoke any action.Lets first see how our login page and index.html will look like :-

index.html

01<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
02<html>
03<head>
04<meta http-equiv="content-type" content="text/html; charset=UTF-8">
05<title>Struts2 File upload on Google App Engine</title>
06</head>
07 
08<body>
09<h1>Struts2 File upload on Google App Engine!</h1>
10<table>
11<tr>
12<td colspan="2" style="font-weight: bold;">Available Application:</td>
13</tr>
14<tr>
15<td><a href="/add" />Upload my Photo</td>
16</tr>
17</table>
18</body>
19</html>

upload.jsp

01<%@ page language="java" contentType="text/html; charset=ISO-8859-1"</pre>
02pageEncoding="ISO-8859-1"%>
03<%@ taglib prefix="s" uri="/struts-tags"%>
04<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
05<html>
06<head>
07<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
08<title>Upload my Photo</title>
09</head>
10<body>
11<s:form action="upload" method="post" enctype="multipart/form-data">
12<s:file name="photo" label="Upload new Photo"></s:file>
13<s:submit value="Upload"></s:submit>
14</s:form>
15 
16</body>
17</html>

After creating the upload.jsp we need to configure this as action in the struts.xml file which you be should put inside source folder parallel to log4j.properties file.We can configure action as mentioned below:-

01<?xml version="1.0" encoding="UTF-8" ?>
02<!DOCTYPE struts PUBLIC
03"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05<struts>
06<include file="struts-default.xml"></include>
07<package name="" namespace="/" extends="struts-default">
08<action name="add">
09<result>/upload.jsp</result>
10</action>
11</package>
12</struts>
  • Now try running this application by right click on project run as > web application and click http://localhost:8080. You will see index.html and when you click on upload my photo you will get this exception :-

SEVERE: Unable to set parameter [location] in result of type [org.apache.struts2.dispatcher.ServletDispatcherResult]

Caught OgnlException while setting property ‘location’ on type ‘org.apache.struts2.dispatcher.ServletDispatcherResult’. – Class: ognl.OgnlRuntime

File: OgnlRuntime.java

Method: invokeMethod

Line: 508 – ognl/OgnlRuntime.java:508:-1

at com.opensymphony.xwork2.ognl.OgnlUtil.internalSetProperty(OgnlUtil.java:392)

Caused by: java.lang.IllegalAccessException: Method [public void org.apache.struts2.dispatcher.StrutsResultSupport.setLocation(java.lang.String)] cannot be accessed.

at ognl.OgnlRuntime.invokeMethod(OgnlRuntime.java:508)

at ognl.OgnlRuntime.callAppropriateMethod(OgnlRuntime.java:812)

at ognl.OgnlRuntime.setMethodValue(OgnlRuntime.java:964)

at ognl.ObjectPropertyAccessor.setPossibleProperty(ObjectPropertyAccessor.java:75)

at ognl.ObjectPropertyAccessor.setProperty(ObjectPropertyAccessor.java:131)

at com.opensymphony.xwork2.ognl.accessor.ObjectAccessor.setProperty(ObjectAccessor.java:28)

at ognl.OgnlRuntime.setProperty(OgnlRuntime.java:1656)

at ognl.ASTProperty.setValueBody(ASTProperty.java:101)

at ognl.SimpleNode.evaluateSetValueBody(SimpleNode.java:177)

at ognl.SimpleNode.setValue(SimpleNode.java:246)

at ognl.Ognl.setValue(Ognl.java:476)

at com.opensymphony.xwork2.ognl.OgnlUtil.setValue(OgnlUtil.java:192)

at com.opensymphony.xwork2.ognl.OgnlUtil.internalSetProperty(OgnlUtil.java:385)

… 73 more

  • In order to resolve this problem we need to make entry in web.xml file also for OgnlListener.This OgnlListener is also provided by struts2-gae framework.(A struts2 extension framework for GAE).
01[/sourcecode]
02 
03<?xml version="1.0" encoding="utf-8"?>
07xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
09<filter>
10<filter-name>struts2-gae</filter-name>
11<filter-class>com.struts2.gae.dispatcher.GaeFilterDispatcher</filter-class>
12</filter>
13<filter-mapping>
14<filter-name>struts2-gae</filter-name>
15<url-pattern>/*</url-pattern>
16</filter-mapping>
17<listener>
18<listener-class>com.struts2.gae.listener.OgnlListener</listener-class>
19</listener>
20<welcome-file-list>
21<welcome-file>index.html</welcome-file>
22</welcome-file-list>
23</web-app>
24 
251
  • You need to add this step if you are using Google App Engine 1.2.6 because when you run struts2 application on google app engine 1.2.6 you will get the following error:-

javax.servlet.ServletException: java.lang.NoClassDefFoundError: javax.swing.tree.TreeNode is a restricted class. Please see the Google App Engine developer’s guide for more details.
at org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
at org.apache.jasper.runtime.PageContextImpl.access$1100(PageContextImpl.java:64)
at org.apache.jasper.runtime.PageContextImpl$12.run(PageContextImpl.java:745)
at java.security.AccessController.doPrivileged(Native Method)
at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:743)
at org.apache.jsp.login_jsp._jspService(login_jsp.java:86)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
at com.google.appengine.tools.development.PrivilegedJspServlet.access$101(PrivilegedJspServlet.java:23)
at com.google.appengine.tools.development.PrivilegedJspServlet$2.run(PrivilegedJspServlet.java:59)
at java.security.AccessController.doPrivileged(Native Method)
at com.google.appengine.tools.development.PrivilegedJspServlet.service(PrivilegedJspServlet.java)

To avoid this error you need to create a new package “freemarker.core” in your source folder and add the following class

001</span></span>
002 
003/*
004* Copyright (c) 2003 The Visigoth Software Society. All rights
005* reserved.
006*
007* Redistribution and use in source and binary forms, with or without
008* modification, are permitted provided that the following conditions
009* are met:
010*
011* 1. Redistributions of source code must retain the above copyright
012* notice, this list of conditions and the following disclaimer.
013*
014* 2. Redistributions in binary form must reproduce the above
015copyright
016* notice, this list of conditions and the following disclaimer in
017* the documentation and/or other materials provided with the
018* distribution.
019*
020* 3. The end-user documentation included with the redistribution, if
021* any, must include the following acknowledgement:
022* "This product includes software developed by the
023* Visigoth Software Society (http://www.visigoths.org/)."
024* Alternately, this acknowledgement may appear in the software
025itself,
026* if and wherever such third-party acknowledgements normally
027appear.
028*
029* 4. Neither the name "FreeMarker", "Visigoth", nor any of the names
030of the
031* project contributors may be used to endorse or promote products
032derived
033* from this software without prior written permission. For written
034* permission, please contact visigo...@visigoths.org.
035*
036* 5. Products derived from this software may not be called
037"FreeMarker" or "Visigoth"
038* nor may "FreeMarker" or "Visigoth" appear in their names
039* without prior written permission of the Visigoth Software
040Society.
041*
042* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
043* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
044* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
045* DISCLAIMED. IN NO EVENT SHALL THE VISIGOTH SOFTWARE SOCIETY OR
046* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
047* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
048* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
049* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
050* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
051* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
052* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
053* SUCH DAMAGE.
054*
055====================================================================
056*
057* This software consists of voluntary contributions made by many
058* individuals on behalf of the Visigoth Software Society. For more
059* information on the Visigoth Software Society, please see
061*/
062 
063package freemarker.core;
064 
065import java.io.IOException;
066 
067/**
068* A TemplateElement representing a block of plain text.
069*
070* @version $Id: TextBlock.java,v 1.17 2004/01/06 17:06:42 szegedia Exp $
071*/
072public final class TextBlock extends TemplateElement {
073private static final char[] EMPTY_CHAR_ARRAY = new char[0];
074static final TextBlock EMPTY_BLOCK = new TextBlock(EMPTY_CHAR_ARRAY, false);
075// We're using char[] instead of String for storing the text block because
076// Writer.write(String) involves copying the String contents to a char[]
077// using String.getChars(), and then calling Writer.write(char[]).By
078// using Writer.write(char[]) directly, we avoid array copying on each
079// write.
080private char[] text;
081private final boolean unparsed;
082 
083public TextBlock(String text) {
084this(text, false);
085}
086 
087public TextBlock(String text, boolean unparsed) {
088this(text.toCharArray(), unparsed);
089}
090 
091private TextBlock(char[] text, boolean unparsed) {
092this.text = text;
093this.unparsed = unparsed;
094}
095 
096/**
097* Simply outputs the text.
098*/
099public void accept(Environment env) throws IOException {
100env.getOut().write(text);
101}
102 
103public String getCanonicalForm() {
104String text = new String(this.text);
105if (unparsed) {
106return "<#noparse>" + text + "</#noparse>";
107}
108return text;
109}
110 
111public String getDescription() {
112String s = new String(text).trim();
113if (s.length() == 0) {
114return "whitespace";
115}
116if (s.length() > 20) {
117s = s.substring(0, 20) + "...";
118s = s.replace('/n', ' ');
119s = s.replace('/r', ' ');
120}
121return "text block (" + s + ")";
122}
123 
124TemplateElement postParseCleanup(boolean stripWhitespace) {
125if (text.length == 0)
126return this;
127int openingCharsToStrip = 0, trailingCharsToStrip = 0;
128boolean deliberateLeftTrim = deliberateLeftTrim();
129boolean deliberateRightTrim = deliberateRightTrim();
130if (!stripWhitespace || text.length == 0) {
131return this;
132}
133if (parent.parent == null && previousSibling() == null)
134return this;
135if (!deliberateLeftTrim) {
136trailingCharsToStrip = trailingCharsToStrip();
137}
138if (!deliberateRightTrim) {
139openingCharsToStrip = openingCharsToStrip();
140}
141if (openingCharsToStrip == 0 && trailingCharsToStrip == 0) {
142return this;
143}
144this.text = substring(text, openingCharsToStrip, text.length
145- trailingCharsToStrip);
146if (openingCharsToStrip > 0) {
147this.beginLine++;
148this.beginColumn = 1;
149}
150if (trailingCharsToStrip > 0) {
151this.endColumn = 0;
152}
153return this;
154}
155 
156/**
157* Scans forward the nodes on the same line to see whether there is a
158* deliberate left trim in effect. Returns true if the left trim was
159* present.
160*/
161private boolean deliberateLeftTrim() {
162boolean result = false;
163for (TemplateElement elem = this.nextTerminalNode(); elem != null
164&& elem.beginLine == this.endLine; elem = elem
165.nextTerminalNode()) {
166if (elem instanceof TrimInstruction) {
167TrimInstruction ti = (TrimInstruction) elem;
168if (!ti.left && !ti.right) {
169result = true;
170}
171if (ti.left) {
172result = true;
173int lastNewLineIndex = lastNewLineIndex();
174if (lastNewLineIndex >= 0 || beginColumn == 1) {
175char[] firstPart = substring(text, 0,
176lastNewLineIndex + 1);
177char[] lastLine = substring(text, 1 + lastNewLineIndex);
178if (trim(lastLine).length == 0) {
179this.text = firstPart;
180this.endColumn = 0;
181} else {
182int i = 0;
183while (Character.isWhitespace(lastLine[i])) {
184i++;
185}
186char[] printablePart = substring(lastLine, i);
187this.text = concat(firstPart, printablePart);
188}
189}
190}
191}
192}
193if (result) {
194}
195return result;
196}
197 
198/**
199* Checks for the presence of a t or rt directive on the same line. Returns
200* true if the right trim directive was present.
201*/
202private boolean deliberateRightTrim() {
203boolean result = false;
204for (TemplateElement elem = this.prevTerminalNode(); elem != null
205&& elem.endLine == this.beginLine; elem = elem
206.prevTerminalNode()) {
207if (elem instanceof TrimInstruction) {
208TrimInstruction ti = (TrimInstruction) elem;
209if (!ti.left && !ti.right) {
210result = true;
211}
212if (ti.right) {
213result = true;
214int firstLineIndex = firstNewLineIndex() + 1;
215if (firstLineIndex == 0) {
216return false;
217}
218if (text.length > firstLineIndex
219&& text[firstLineIndex - 1] == '/r'
220&& text[firstLineIndex] == '/n') {
221firstLineIndex++;
222}
223char[] trailingPart = substring(text, firstLineIndex);
224char[] openingPart = substring(text, 0, firstLineIndex);
225if (trim(openingPart).length == 0) {
226this.text = trailingPart;
227this.beginLine++;
228this.beginColumn = 1;
229} else {
230int lastNonWS = openingPart.length - 1;
231while (Character.isWhitespace(text[lastNonWS])) {
232lastNonWS--;
233}
234char[] printablePart = substring(text, 0, lastNonWS + 1);
235if (trim(trailingPart).length == 0) {
236// THIS BLOCK IS HEINOUS! THERE MUST BE A BETTER
237// WAY! REVISIT (JR)
238boolean trimTrailingPart = true;
239for (TemplateElement te = this.nextTerminalNode(); te != null
240&& te.beginLine == this.endLine; te = te
241.nextTerminalNode()) {
242if (te.heedsOpeningWhitespace()) {
243trimTrailingPart = false;
244}
245if (te instanceof TrimInstruction
246&& ((TrimInstruction) te).left) {
247trimTrailingPart = true;
248break;
249}
250}
251if (trimTrailingPart)
252trailingPart = EMPTY_CHAR_ARRAY;
253}
254this.text = concat(printablePart, trailingPart);
255}
256}
257}
258}
259return result;
260}
261 
262/*
263* private String leftTrim(String s) { int i =0; while (i<s.length()) { if
264* (!Character.isWhitespace(s.charAt(i))) break; ++i; } return
265* s.substring(i); }
266*/
267private int firstNewLineIndex() {
268String content = new String(text);
269int newlineIndex1 = content.indexOf('/n');
270int newlineIndex2 = content.indexOf('/r');
271int result = newlineIndex1 >= 0 ? newlineIndex1 : newlineIndex2;
272if (newlineIndex1 >= 0 && newlineIndex2 >= 0) {
273result = Math.min(newlineIndex1, newlineIndex2);
274}
275return result;
276}
277 
278private int lastNewLineIndex() {
279String content = new String(text);
280return Math.max(content.lastIndexOf('/r'), content.lastIndexOf('/n'));
281}
282 
283/**
284* figures out how many opening whitespace characters to strip in the
285* post-parse cleanup phase.
286*/
287private int openingCharsToStrip() {
288int newlineIndex = firstNewLineIndex();
289if (newlineIndex == -1 && beginColumn != 1) {
290return 0;
291}
292++newlineIndex;
293if (text.length > newlineIndex) {
294if (newlineIndex > 0 && text[newlineIndex - 1] == '/r'
295&& text[newlineIndex] == '/n') {
296++newlineIndex;
297}
298}
299if (new String(text).substring(0, newlineIndex).trim().length() > 0) {
300return 0;
301}
302// We look at the preceding elements on the line to see if we should
303// strip the opening newline and any whitespace preceding it.
304for (TemplateElement elem = this.prevTerminalNode(); elem != null
305&& elem.endLine == this.beginLine; elem = elem
306.prevTerminalNode()) {
307if (elem.heedsOpeningWhitespace()) {
308return 0;
309}
310}
311return newlineIndex;
312}
313 
314/**
315* figures out how many trailing whitespace characters to strip in the
316* post-parse cleanup phase.
317*/
318private int trailingCharsToStrip() {
319String content = new String(text);
320int lastNewlineIndex = lastNewLineIndex();
321if (lastNewlineIndex == -1 && beginColumn != 1) {
322return 0;
323}
324String substring = content.substring(lastNewlineIndex + 1);
325if (substring.trim().length() > 0) {
326return 0;
327}
328// We look at the elements afterward on the same line to see if we
329// should strip any whitespace after the last newline
330for (TemplateElement elem = this.nextTerminalNode(); elem != null
331&& elem.beginLine == this.endLine; elem = elem
332.nextTerminalNode()) {
333if (elem.heedsTrailingWhitespace()) {
334return 0;
335}
336}
337return substring.length();
338}
339 
340boolean heedsTrailingWhitespace() {
341if (isIgnorable()) {
342return false;
343}
344for (int i = 0; i < text.length; i++) {
345char c = text[i];
346if (c == '/n' || c == '/r') {
347return false;
348}
349if (!Character.isWhitespace(c)) {
350return true;
351}
352}
353return true;
354}
355 
356boolean heedsOpeningWhitespace() {
357if (isIgnorable()) {
358return false;
359}
360for (int i = text.length - 1; i >= 0; i--) {
361char c = text[i];
362if (c == '/n' || c == '/r') {
363return false;
364}
365if (!Character.isWhitespace(c)) {
366return true;
367}
368}
369return true;
370}
371 
372boolean isIgnorable() {
373if (text == null || text.length == 0) {
374return true;
375}
376if (!isWhitespace()) {
377return false;
378}
379// trick here
380boolean atTopLevel = true;
381TemplateElement prevSibling = previousSibling();
382TemplateElement nextSibling = nextSibling();
383return ((prevSibling == null && atTopLevel) || nonOutputtingType(prevSibling))
384&& ((nextSibling == null && atTopLevel) || nonOutputtingType(nextSibling));
385}
386 
387private boolean nonOutputtingType(TemplateElement element) {
388return (element instanceof Macro || element instanceof Assignment
389|| element instanceof AssignmentInstruction
390|| element instanceof PropertySetting
391|| element instanceof LibraryLoad || element instanceof Comment);
392}
393 
394private static char[] substring(char[] c, int from, int to) {
395char[] c2 = new char[to - from];
396System.arraycopy(c, from, c2, 0, c2.length);
397return c2;
398}
399 
400private static char[] substring(char[] c, int from) {
401return substring(c, from, c.length);
402}
403 
404private static char[] trim(char[] c) {
405if (c.length == 0) {
406return c;
407}
408return new String(c).trim().toCharArray();
409}
410 
411private static char[] concat(char[] c1, char[] c2) {
412char[] c = new char[c1.length + c2.length];
413System.arraycopy(c1, 0, c, 0, c1.length);
414System.arraycopy(c2, 0, c, c1.length, c2.length);
415return c;
416}
417 
418boolean isWhitespace() {
419return text == null || trim(text).length == 0;
420}
421 
422}

 

  • Now if you run the web application you will see the upload page.
  • Next step is to configure the GaeFileUploadInterceptor in struts.xml file.In struts 2, file upload is done by FileUploadInterceptor which intercept all the MultiPartRequest and provides the File object to the action. Then action does what ever it wants to do with the File object.But, on google app engine you can’t get the File object because file writes and many other file related operations are not allowed on GAE.So, we will use GaeFileUploadInterceptor which provides a String object which contains all the file content.You can save this string as a blob into the datastore or convert this string object into InputStream and return to the user.You need to add an entry in struts.xml for GaeFileUploadInterceptor.
01</pre>
02<?xml version="1.0" encoding="UTF-8" ?>
03<!DOCTYPE struts PUBLIC
04"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
06<struts>
07<include file="struts-default.xml"></include>
08<package name="" namespace="/" extends="struts-default">
09<interceptors>
10<interceptor name="gaeFileUploadInterceptor"
11class="com.struts2.gae.interceptor.GaeFileUploadInterceptor" />
12<interceptor-stack name="fileUploadStack">
13<interceptor-ref name="gaeFileUploadInterceptor"></interceptor-ref>
14<interceptor-ref name="basicStack"></interceptor-ref>
15</interceptor-stack>
16</interceptors>
17 
18<default-interceptor-ref name="fileUploadStack" />
19<action name="add">
20<result>/upload.jsp</result>
21</action>
22</package>
23 
24</struts>
25<pre>
  • Next step is to create the UploadAction which will handle the upload request.
01package com.fileupload;
02 
03import java.io.InputStream;
04 
05import org.apache.commons.io.IOUtils;
06 
07import com.opensymphony.xwork2.ActionSupport;
08 
09public class UploadAction extends ActionSupport {
10 
11private static final long serialVersionUID = -300329750248730163L;
12private String photo;
13private String photoContentType;
14private String photoFileName;
15private InputStream photoStream;
16 
17public String upload() throws Exception {
18photoStream = IOUtils.toInputStream(photo,"ISO-8859-1");
19return "success";
20}
21 
22public String getPhoto() {
23return photo;
24}
25 
26public void setPhoto(String photo) {
27this.photo = photo;
28}
29 
30public String getPhotoContentType() {
31return photoContentType;
32}
33 
34public void setPhotoContentType(String photoContentType) {
35this.photoContentType = photoContentType;
36}
37 
38public String getPhotoFileName() {
39return photoFileName;
40}
41 
42public void setPhotoFileName(String photoFileName) {
43this.photoFileName = photoFileName;
44}
45 
46public InputStream getPhotoStream() {
47return photoStream;
48}
49 
50public void setPhotoStream(InputStream photoStream) {
51this.photoStream = photoStream;
52}
53}

If you notice there are three properties in the action photo,photoContentType,photoFileName.These properties get their values from the GaeFileUploadInterceptor. These properties have to start with name you gave the file in the upload.jsp <s:file name=”photo” label=”Upload new Photo”></s:file>. In this, name is “photo” so you will get your file content in a property called photo and the two other properties will start with photo.

The second thing to notice is that result of action is “success” which is not SUCCESS you normally use. In this we are using a different result type called org.apache.struts2.dispatcher.StreamResult. Stream result is a custom Result type for sending raw data (via an InputStream) directly to the HttpServletResponse.

  • Now we will configure UploadAction in struts.xml
01<?xml version="1.0" encoding="UTF-8" ?>
02<!DOCTYPE struts PUBLIC
03"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
05<struts>
06<include file="struts-default.xml"></include>
07<package name="" namespace="/" extends="struts-default">
08<interceptors>
09<interceptor name="gaeFileUploadInterceptor"
10class="com.struts2.gae.interceptor.GaeFileUploadInterceptor" />
11<interceptor-stack name="fileUploadStack">
12<interceptor-ref name="gaeFileUploadInterceptor"></interceptor-ref>
13<interceptor-ref name="basicStack"></interceptor-ref>
14</interceptor-stack>
15</interceptors>
16 
17<default-interceptor-ref name="fileUploadStack" />
18<action name="add">
19<result>/upload.jsp</result>
20</action>
21<action name="upload" method="upload">
22<result name="success" type = "stream">
23<param name="contentType">image/jpeg</param>
24<param name="inputName">photoStream</param>
25<param name="contentDisposition">filename="photo.jpg"</param>
26<param name="bufferSize">1024</param>
27</result>
28</action>
29</package>
30 
31</struts>
  • Finally, Run this application you will be able to upload the photo and then view it in your browser.

In this blog, i have tried to explain you how you can do file upload using struts 2 on google app engine.Please make sure you download the struts2-gae jar.Hope this helps you all.

You can dowload the sample project from here.

 

http://whyjava.wordpress.com/2009/10/04/file-upload-on-google-app-engine-using-struts2/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值