Tagged Questions

WebWork was a Java-based web application framework developed by OpenSymphony that merged into the current Struts 2 framework.

learn more… | top users | synonyms

5
votes
1answer
1k views

Atlassian JIRA Plugin Development: How to make variables available to velocity templates

FAIR WARNING: this question is going to be pretty tough to answer unless you have experience with JIRA and have access to their source (enterprise users). Greetings all, I am writing a plugin which ...
2
votes
3answers
431 views

Stripes for Java Web Dev, is it worth learning ? Is it easier ? how it compared to Struts?

I am tired of Java web, and started to learn Ruby on Rails because of that, but I just found this Framework and it looks promessing... But I am not in the mood to study more Java, so I would like to ...
1
vote
1answer
31 views

Tracking down the caller of a method [called through an invocation]

How would go about tracing down a method invocation from webwork.util.InjectionUtils in OpenSymphony Webworks? (I realize that this is an outdated project, but I'm still required to use it) I'm ...
1
vote
1answer
96 views

where web framework webwork?, is it still being released periodically?

I interested using webwork 2, after great experience on struts 1.2 on previous project. But after I checked on link text the latest release is 2007, and the few documentation tutorial status "is in ...
1
vote
2answers
299 views

Webwork actions, the lifecycle of variables declared in the action class

I'm using the webwork framework (JIRA plugin development) and was wondering about the lifecycle of the variables in the action class. I have a few private variables in the action class that are set ...
1
vote
1answer
229 views

FreeMarker, WebWork Problem

I have a web application written using freemarker, webwork and java. Now when user clicks on "getReport", java code returns the string variable (named "otchet") which contains the whole report in ...
1
vote
3answers
333 views

Configure velocity to render an object with something other than toString?

Is there a way to configure Velocity to use something other than toString() to convert an object to a string in a template? For example, suppose I'm using a simple date class with a format() method, ...
0
votes
0answers
7 views

java vs webwork, spring and freemarker

good morning to all! in a project which made in java vs webwork, spring and freemarker have a table, part of code: <@display.table id="document" pagesize=15 name="documents" ...
0
votes
1answer
677 views

How do i fix “Origin null is not allowed by Access-Control-Allow-Origin” error in Javascript (jquery) with webworks?

I am trying to create a webworks app and trying to use jquery to post to a REST api - I get the following error "Origin null is not allowed by Access-Control-Allow-Origin" The javascript tries to ...
0
votes
2answers
583 views

Which is easier: Blackberry Webworks SDK or Adobe AIR for Playbook Tablet for CRUD/WCF developement?

I want to create a 1.0 application that uses WCF calls with the Blackberry Playbook Tablet. Which technology is easier to make a CRUD application using WCF: Webworks, or Playbook? The WCF service is ...
0
votes
1answer
612 views

Multiple Submit Buttons problem in Struts2

Trying to work with multiple submit buttons within a single form in struts2 application but not able to work. here is the jsp code i am using <tr> <td class="button"><input ...
0
votes
1answer
361 views

struts 2 action class instance variable initialization

I am currently working a existing project.It's using Struts 2 + Spring 2.5. There is one action class, let's call it ActionA.java, inside which, there is a instance variable which is a service ...
0
votes
1answer
306 views

How can I change my context root in WebWork?

I am currently working on a huge web application consisting of JSPs. Also i use WebWork framework. Until now the context root of my application was "/". Now I want to change that to "nstat". How ...