Stripes is an open source web application framework based on the model-view-controller pattern.
-5
votes
0answers
14 views
How to make striped border for entire page using css [closed]
i am trying to make a border for the entire page but it has to be striped. any ideas how i can go about that.
Appreciate your help.
What i want is a striped border on the page.
the border is to be ...
0
votes
0answers
25 views
In Stripes framework, how do I handle my thrown custom exception in my Custom Exception Handler
I'm using Java Stripes framework.
I've written a Custom Exception Handler.
I've written some custom Exception classes.
I would like to catch certain exceptions that happen, and then throw my custom ...
0
votes
1answer
32 views
Java Stripes Error
So I am following the quick start guide on the Stripes website here:
http://www.stripesframework.org/display/stripes/Quick+Start+Guide
I have followed each step but when I try to view it I get the ...
0
votes
2answers
58 views
Basic Java Stripes Example Hello World
So I am trying to use the Stripes framework for Java to run a hello world application. Using the example on wikipedia here:
http://en.wikipedia.org/wiki/Stripes_%28framework%29#Example
So with the ...
0
votes
1answer
35 views
Is there any limit on the amount of data Freemarker can render?
I am using Freemarker with Stripes. In one of the cases where I have a table to render which has 17 columns and some 13-15 rows, the whole of it is not getting rendered at once. There is no ...
0
votes
1answer
64 views
Ajax call to Stripes framework in Java results in an empty request body
Environment: Eclipse running Tomcat v7.0, working with the Stripes framework for Java, and submitting to the service via a JQuery ajax call.
The Javascript:
jQuery( function(){
...
1
vote
0answers
41 views
Stripes options-collection init behaviour
I'm making a registration form that has a dropdown list for the users qualification. My actionbean has a String[] qualifs attribute with getter and setter, from which i'd like to fill the list from. ...
0
votes
1answer
35 views
unable to fetch values from action bean to jsp using stripes
My action bean is
@HandlesEvent("getExcessesWidget")
public Resolution getExcessesWidget(){
primaryCO ="situser5";
excessList = excessManagementUiService.**getExcessesWidget**(primaryCO);
...
0
votes
2answers
153 views
Java MVC for Google App Engine [closed]
I am recent graduate with no real experience. I want to develop relatively simple web application(job listing site) in Java which works on Google App Engine for my project.
I did some research ...
0
votes
0answers
34 views
Stripes fails silently
I'm trying to update some action bean properties using Stripes framework.
A tag like this:
<s:text name="userName"></s:text>
should invoke the
public void setUserName(String ...
0
votes
0answers
15 views
Stripes: how to read a list when added as a parameter to RedirectResolution
I have a scenario where I am using RedirectResolution and adding an ArrayList as a parameter to it. In the JSP, I am unable to read the parameter (ArrayList sent from the Action Class).
Can you ...
0
votes
1answer
65 views
Stripes and Enumerate Java classes in drop down menus
When using a drop down menu with a Java enumerate, then Stripes returns some sort of binary content rather than the actual string that should represent the enumerate.
In more details, please see how ...
0
votes
2answers
176 views
Saving Contact to Database in Java + Hibernate + Stripes
I've recently started working with the back end of Java coming from learning Ruby last year. I'm trying to do a simple "post" action saving a contact to a MySQL database. (Please forgive the newbie ...
0
votes
1answer
57 views
In the Stripes framework, how do I dependency inject fields in my action bean when using the MockRoundtrip?
Here's an example of setting up Stripes to use the MockRoundtrip:
private void setupStripes() {
context = new MockServletContext("testresults");
// Add the Stripes Filter
...
0
votes
0answers
47 views
How do I stub out an ActionBean in the MockRoundtrip of StripesFramework?
Here's an example of setting up Stripes to use the MockRoundtrip:
private void setupStripes() {
context = new MockServletContext("testresults");
// Add the Stripes Filter
...
0
votes
3answers
135 views
Can I get values from hidden field doing something as below?
I have a table with rows. I have to get the row values. I am putting the row values in an array through JavaScript and then on submitting the form I am iterating the array and appending the vales to a ...
0
votes
1answer
74 views
How do I map my HashMap in the ActionBean with the form on the JSP?
I am using Stripes. My Action bean has a HashMap which has id(String) and quantity(int). On the JSP I am submitting a Form, the id and the quantity I want to map to the HashMap so that all the ids and ...
2
votes
1answer
85 views
Corrupt form data: premature ending on Alcatel OT900A
I am trying to submit a form using an Alcatel OT900A but I am getting this error
ava.io.IOException: Corrupt form data: premature ending
at ...
0
votes
1answer
93 views
Maven 3: Stripes Archetype - cannot create project?
I'm following this guide:
http://www.stripesframework.org/pages/viewpage.action?pageId=1572995&decorator=printable
I run the following command, which reports BUILD SUCCESS:
mvn ...
1
vote
2answers
82 views
How can I read Apache Httpd Env variables from a Java application running in TomCat?
I have a couple of Java applications running in TomCat containers behind Apache Httpd. In Apache Httdp you can set Env variables with SetEnv FOO bar, if you have mod_env installed. How can I read ...
1
vote
1answer
77 views
Mapping POST data to objects via Stripes
I've been googling like a madman trying to figure this out.
So I typically see JSP pages with form values with names like this:
<input name="${object.member}" type="text" />
Which maps to ...
0
votes
1answer
60 views
Stripes ActionBean get client PUT data
I'm trying to implement a iOS MDM server in Java with stripes.
I want the iDevice to checkin to a ActionBean, but how do I get the data from the iDevice's PUT request?
The data that the iDevice will ...
0
votes
1answer
76 views
Stripes format type format pattern number not working properly
I have a Stripes JSP with a <stripes:form> tag etc.
I have a line like the following one:
<span class='amount'>
<fmt:formatNumber value="${MyJavaClass.amount}" type="number"/>
...
0
votes
1answer
52 views
Stripes: java.lang.NoSuchMethodException: net.sourceforge.stripes.action.Resolution.<init>
I'm new to stripes, and I'm getting the following error when I do a post to my Java app:
java.lang.NoSuchMethodException: net.sourceforge.stripes.action.Resolution.<init>
The post is received ...
0
votes
0answers
50 views
Stripes Filter error in JavaEE
I have got java web aplication using Stripes. It is remote client to server using business logic with Spring framework. Final deploy pass correctly in NetbeansIDE. However, via command line using mvn ...
0
votes
1answer
110 views
Using Stripes, what is the best pattern for Show/Update/etc Action Beans?
I have been wrestling with this problem for a while. I would like to use the same Stripes ActionBean for show and update actions. However, I have not been able to figure out how to do this in a clean ...
0
votes
1answer
64 views
Intra-URL parameters and ForwardResolution mapping
When I've got an ActionBean with a UrlBinding like
@UrlBinding("/whatever/{foo}/{bar}")
then if in some other action I create and return a ForwardResolution to "/whatever/hello/world", I'd kind-of ...
0
votes
0answers
22 views
Where to get stripes-acl?
The stripes framework till this time proved good framework, there has been some add-on for stripes for acl from this link http://www.stripesframework.org/display/stripes/Securing+Stripes+With+ACLs ...
0
votes
0answers
88 views
jersey and stripes - same context?
I am writing web app which I am deploying by maven plugin and it's context is set as
<build>
<plugins>
<plugin>
...
0
votes
0answers
245 views
DisplayTag: How to iterate over a Map
I have a Map that I would like to iterate over to populate a DisplayTag table. What I'm trying to do is create a separate column for each Map entry. My Map looks like this:
Map<String, ...
4
votes
2answers
96 views
Hibernate OneToMany mapping
I have two model classes: Equity and EquityData. There is a OneToMany relationship from Equity to EquityData. I'm having a hard time getting Hibernate to bind the way I want it to.
@Entity
...
0
votes
1answer
164 views
Stripes ignores submit button event
I am using Stripes framework and I have a problem I just cannot solve.
I have a page in the folder "creatures" called "add.jsp" which adds a creature (some entity in my model) into the DB. I use this ...
1
vote
0answers
62 views
How to inject EJB Bean in different modul in Stripes ActionBean method?
Im writing JavaEE application, which contains of three modules.
In web module I need to inject ejb bean (in Stripes action bean method), which is located in ejb module.
So i followed this tutorial
...
0
votes
0answers
55 views
What are the preferable ways to do Java web development with eclipse Juno? [closed]
I used to use the sysdeo plugin with javarebel in the past to run tomcat inside eclipse. My experience with WTP was not the best (too heavy and requires too much details to get it working right). I ...
0
votes
0answers
63 views
locale from clean stripes url
I am trying to get the locale from clean url
http://myapp.com/app/{locale}/{param} with url binding :- @UrlBinding("/app/{locale}/{param}") and set it to get form fields from respective locale's ...
1
vote
0answers
127 views
Ajax displaytag in webmail application example
I have problem after putting in the filter ajax function to the webmail
application example in the Stripes book. When I click column header to sort
the table records, it works. However, when I ...
0
votes
1answer
154 views
javax.servlet.Filter blocks iFrame request
My application implements the javax.servlet.Filter interface. But I've got a weird case. One of my ActionBean instances is returning response to one jsp, this jsp contains an <iframe> tag. in ...
2
votes
2answers
75 views
Stripes: Wrong action class mapping.
In Stripes, If there is a wrong action class mapping, the default behaviour of Stripes is that it forwards the control to the same JSP from which the request is made and gives out a complete error ...
4
votes
3answers
187 views
Calling Different Webservices in parallel from Webapp
We've got a stipes (java) web-app that needs to make about 15 different webserivce calls all from one method. For example:
...
public Resolution userProfile()
{
serviceOneCall();
...
1
vote
2answers
300 views
Stripes UrlBinding - Parameter disappears on submit
I use URL bindings on all my actionbeans and some of them requires a parameter, e.g. /admin/users/123.
Taking this URL as an example, in my actionbean I am able to get the parameter 123 and display ...
0
votes
2answers
414 views
Using Stripes, can I include the output resolution of an ActionBean into a jsp?
I have found a situation where I would like to include the same content on many pages by importing the output of an shared ActionBean.
What I would like to do is have an ActionBean which takes some ...
0
votes
2answers
215 views
How to talk to a Java servlet from a Native IOS App
we made a HTML5 mobile app, & now we are creating a IOS native App. We want the IOS app to call methods on the Java servlet (with stripes) (running the HTML5 App) so that we can use the same ...
1
vote
0answers
162 views
Glassfish 3.1.2.2 starts my web application twice
I have a strange behavior of Glassfish 3.1.2.2 (build 5) running on OpenIndiana 151.a3
Using oracle jdk 1.7.0_5.
When i deploy my web application which has a spring web dispatcher and stripes servlet
...
0
votes
0answers
50 views
Controlling the properties on the Wizard in Stripes
I am using Stripes and I want to use the Wizard functionality on a multi-step form. Now let's say the user is entering sensitive data on one part of the form. Is it possible to tell stripes not to ...
0
votes
0answers
126 views
Stripesframework NullPointerException
When deploying my war in an embedded jetty using gradle jettyRunWar I'm getting the following error:
HTTP ERROR 500
Problem accessing /project/. Reason:
INTERNAL_SERVER_ERROR
Caused by:
...
1
vote
1answer
103 views
Creating Sessionless page in Stripes
I have a Stripes website and I will have one page that will get lots of hits, and I was asked to make sure Stripes does not create a user session when someone navigates to this page.
Is there a way ...
0
votes
1answer
232 views
Stripes JsonResolution causing stackoverflowerror on Hibernate many to one mapping
I've been online trying to fix this for awhile now.
I have an object, which has successfully mapped (including JsonResolution) by using
But when I use the many-to-one mapping for a different ...
1
vote
0answers
399 views
Stripes Framework radiobutton list access on java backend
I'm relatively new to Stripes, and I'm trying to create a jsp page that has a radio button list on it. The problem is I've been unable to find a good example of how to access the values of the ...
0
votes
1answer
545 views
Stripe Proxy Service in WSO2 ESB
I have proxied the Stripe Web services in wso2 and I am not able to post data using curl as well as by creating HttpClient .
Related files content:
synapse config file in wso2---
<?xml ...
0
votes
2answers
481 views
Intercepting and changing request url Using Stripes framework
I am facing problem in intercepting and changing request url to link it with correct URL.
I am using stripes framework, and want to redirect user to their correct subdomain.
For eg. if user belongs ...

