Tagged Questions
Stripes is an open source web application framework based on the model-view-controller pattern.
13
votes
6answers
2k views
Practical Experience using Stripes?
I am coming from an Enterprise Java background which involves a fairly heavyweight software stack, and have recently discovered the
Stripes framework; my initial impression is that this seems to do a ...
7
votes
1answer
950 views
Downsides of using Stripes+Spring vs Spring MVC
I am coming from Struts 1 world. Now I am starting a new project and we are using Spring.
I could use Spring MVC, but seeing how simple it is to use Stripes (no xml is a big plus) I am tempted to use ...
7
votes
7answers
2k views
How to create zebra stripes on html table without using javascript and even/odd classes generation?
I want to zebra-stripe a html table without using any js stuff or writing server-side code to generate even/odd classes for table rows. Is it ever possible to do using raw css?
7
votes
7answers
1k views
JSF vs Stripes, which is best?
Which is best, or in other words, whish is easiest to use? Stripes or JSF.
Although I haven't used both in anger I need to gauge what is the best option to work with for both starting new projects ...
5
votes
6answers
3k views
Stripes, Spring, Play (or ?) : which high performance Java framework to use?
We are beginning to build out a webapp which will probably see a lot of traffic. We dont have a lot of money, so we want to reduce hardware cost.
More or less, I think that means we will try to be as ...
5
votes
4answers
549 views
Should I duplicate validation in my MVC layer and Service layer?
I'm feeling a little conflicted at the moment. I have a web application using Stripes for an MVC framework and Spring/Hibernate for the back-end. I have an account registration method in my MVC layer ...
5
votes
1answer
370 views
How to clear a bean field with Stripes
In a JSP I have the following field:
<stripes:text name="email"/>
This field is in my action bean(snippet):
public class CreateClaim implements ActionBean {
private String email;
...
5
votes
3answers
1k views
Can you use J2EE frameworks with the Google App Engine?
I have been working on a small web app using the Stripes framework. Now that the Google App Engine has added support for Java, I am wondering if I can convert it to run in the Google App Engine to ...
4
votes
1answer
147 views
I like Stripes but I'm using sl4j/logback for logging, what are my options?
Since stripes comes with commong-logging. What are my options in using stripes in a web applications without commons logging. How can I replace it with sl4j logging library?
4
votes
2answers
253 views
Stripes MVC Model Data
I am experienced with Spring MVC and am trying out Stripes to decide whether to try it out for a new project.
In Spring MVC I would prepare model data and pass it to the view by adding it to a map in ...
3
votes
1answer
153 views
sitemesh layout
The Stripes web framework includes a layout engine which provides the following feature:
Layout Definition File - layout.jsp
<s:layout-definition>
Header
<div><s:layout-component ...
3
votes
2answers
70 views
Malformed Farsi Or Arabic characters on Stripes
I am using Stripes framework to develop a web application.I want to be able to use Farsi or Arabic characters in web pages.
I used
<meta http-equiv="Content-Type" content="text/html; ...
3
votes
2answers
205 views
Managing database connections with Stripes, Guice
I'm wondering about best practices to use for managing database connections in Stripes with Guice.
Ideally I would want to enforce the following:
One db connection is used per thread/http request ...
3
votes
1answer
228 views
dependency inject servlet listener
In my Stripes app I define the following class:
MyServletListener implements ServletContextListener, HttpSessionListener, HttpSessionAttributeListener {
private SomeService someService;
private ...
3
votes
2answers
175 views
using groovy with stripes web framework
I'll be joining a Java project that uses the Stripes web framework. Personally, I much prefer writing Groovy than Java, and am looking for opportunities to use Groovy in this project.
I'm looking for ...
3
votes
1answer
345 views
How do I access the ActionBeanContext within a JSP?
I'm new to Stripes and appreciate every hint that brings me nearer to a functioning web-app!
technological setup: java, dynamic web project, stripes, jsp
scenario:
users can login (index.jsp). ...
3
votes
4answers
1k views
Is the stripes framework dead? Anyone using it?
I am a big fan of the http://www.stripesframework.org and using it heavily for my projects. However the project seems to be dead. It is not possible to register to the website anymore (no license) and ...
3
votes
1answer
356 views
stripes RedirectResolution redirecting to https url
Lets say the user access a stripes action1 using https. Once action1 processing is complete, it uses RedirectResolution to redirect to action2. At this point, the browser receives a 302 to to action2 ...
3
votes
1answer
620 views
StreamingResolution Stripes
Could anyone help me with
java Framework - stripes?
I try to upload image with stripes:file, resize on server and return with new StreamingResolution return ("image / jpeg"...
I dont now exactly how ...
3
votes
1answer
158 views
How to make ActionBean be instantiated immediately but not after I call one of handlers?
I'm trying to make something simple with Stripes. I've read and heard a lot about easiness of using this framework and about steep learning curve (i.e. learning is quite fast and productive).
But ...
3
votes
2answers
2k views
How to make fmt:setLocale work on fmt:formatNumber with only language code in JSP?
I'm trying to localize currency on my JSP web application, problem is when I ask for locale, I only get language code ("en") instead of full language and country code ("en_US").
Problem with this is, ...
3
votes
2answers
769 views
Error moving JSP file into WEB-INF directory with Stripes
I have the following Stripes ActionBean:
package myapp;
import net.sourceforge.stripes.action.*;
public class WelcomeActionBean extends MyAppActionBean {
@DefaultHandler
public Resolution ...
3
votes
2answers
11k views
Tomcat 6 - The requested resource … is not available
I am trying to start developing with Java and the Stripes Framework. I have the following in my web.xml file
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app version="2.4" ...
3
votes
2answers
2k views
Converting a Stripes application to use Friendly URLs
I am working through Fred Daoud's Stripes book and trying to convert the Hello World application to use friendly URLs, as I'm not a big fan of suffix-based mappings like ...
3
votes
2answers
3k views
jQuery Ajax error resolution
I'm working on a stripes app that uses a bit of jQuery to make the UI more dynamic/usable.
I set up an Error Resolution, so if an error is thrown, the user is redirected to an error.jsp page.
...
3
votes
3answers
383 views
Eclipse's WTP translation output
How can I view the intermediate translation done to JSP and JSPX pages by WTP? I'm getting weird syntax errors in my Problems tab of Eclipse in a project that has plenty of .jspx pages. They don't ...
2
votes
1answer
74 views
timertask-based logout give me problems
In this website I need a system that logs the user out after 10 minutes.
In order to login I use a simple procedure of inserting a user (in my case called Lid) instance, and the logout invalidates the ...
2
votes
1answer
101 views
Conversation scope in Stripes Framework
I am currently stuck with using the Stripes Framework.
I haven't used it in years, and I've gotten used to the features of other frameworks.
One thing I miss is a conversation (or browser window) ...
2
votes
1answer
129 views
How to retrieve a message with a specific key from <stripes:messages> of Stripes Framework
I want to retrieve a message with a specific key from the tag of Stripes framework.
In the action bean I have this:
switch (result) {
case REG_ALREADY_REGISTERED:
...
2
votes
1answer
149 views
Using spring service inside of ejb 3.1 stateless timer
I know that the general consensus is to use one or the other, but we have a specific task where we would like to use our spring services from within a stateless ejb timer.
Is there a standard way of ...
2
votes
2answers
77 views
Integrating standard java into web frameworks such as Stripes, Grails JRuby and Rails
For various reasons we have to use a java based web framework to create a proof of concept site. We've a lot of algorithms written in standard java that will have to hook into the site.
So right now ...
2
votes
2answers
361 views
How Does Play compare to Stripes
Hi has anyone had any experience using both Stripes and Play and can compare their strengths and weaknesses?
I understand there are many similar questions such as Stripes, Spring, Play (or ?) : which ...
2
votes
1answer
140 views
app engine localhost x online session
I am using stripes + google app engine.
On the localhost it works properly, but online there are problems:
I am using getContext().getMessages().add(new SimpleMessage(...)). It works fine, but only ...
2
votes
2answers
238 views
ResourceBundle - MissingResourceException - restarting the server solves the problem
A web application throws MissingResourceException when JSP access a property in the ResourceBundle.
When the application starts, it is able to access the resource bundles and read the values from ...
2
votes
1answer
285 views
How do I use a Stripes action as my web app's welcome file?
I have an action bean named HomeActionBean, which Stripes has bound to the URL "Home.action". The URL binding works. Now I would like to use "Home.action" as my welcome file, like this:
...
2
votes
2answers
211 views
Stripes framework: how can I disable string escaping in forms
I'm using the stripes framework to realize a web application. In order to avoid all sorts of attacks, text is stored sanitized into the DB and the sanitization process includes encoding of HTML ...
2
votes
3answers
533 views
Stripes URL prefix as request parameter
I'm trying to build a way for my application to have a URL pattern/scheme like that of applications like Twitter. For example myapplication.com/username where the username is an actual username ...
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 ...
2
votes
4answers
461 views
Problem using MockRoundtrip class
I have following code:
@Test
public void testSaveValid() throws Exception {
MockRoundtrip trip = new MockRoundtrip(mockServletContext,
ContactFormActionBean.class, mockSession);
...
2
votes
2answers
255 views
Stripes - redirect, expire session
I have a Stripes framework question.
This redirect page in the annotation method before?
something like:
@Before
public void test()
{
String ...
2
votes
1answer
210 views
Stripes, GAE: How to implement other methods handling (POST)
Do not know why this (appended method from SomeActionBean.java) does not work on Google app engine? Localy everything runs perfect. Any idea where to look for solution?
/**
* @return Page to ...
2
votes
3answers
510 views
Stripes Framework
I am using Eclipse with Java 1.6. I was wondering what the preliminary steps were to set up the Stripes framework. (What do we do with the .jar file?)
I don't understand the basics of the ...
2
votes
9answers
367 views
What language (Java or Python) + framework for mid sized web project?
I plan to start a mid sized web project, what language + framework would you recommend?
I know Java and Python. I am looking for something simple.
Is App Engine a good option? I like the overall ...
2
votes
1answer
80 views
Validating using stripes causes bound values to delete
I'm using Stripes and I am validating the values of a drop down box to ensure the user selects an option.
On initial load all data is present, but once the validation kicks in the form loses the data ...
2
votes
2answers
422 views
How to propagate .java file change to .class under eclipse, tomcat & stripes
i'm new to java and i got some problems. i'm developping a web application using the framework stripes on tomcat 6.0.
I'm working with eclipse EE on windows. i successfully managed to get the stripes ...
2
votes
1answer
1k views
Stripes : RedirectResolution; How can I redirect to specific action event?
I have an action bean in my stripes application. The default handler/method will display a list of data, a list of all my MarketResearch objects
On my JSP, I can click on one to view its details, ...
2
votes
2answers
1k views
How can I use List of object with Stripes “option” tag?
I have a List of object, produced by JPA q.getResultList().
I would like to use it in a drop down, but Stripes "option" tag cant accept List, just Collection, Enum and Map.
Im new to Java, that why ...
2
votes
3answers
845 views
How to remove the file suffix/extension (.jsp and .action) using the Stripes Framework?
I'm looking to use pretty / clean URL's in my web app.
I would like the following URL:
http://mydomain.com/myapp/calculator
.. to resolve to:
com.mydomain.myapp.action.CalculatorActionBean
I ...
2
votes
3answers
224 views
Open source CMS in stripes?
Is there any existing open source CMS in stripes?
I'm especially looking for a very tiny and lightweight one that I can take a look on and learn from :)
2
votes
3answers
2k views
How can I display a JFreeChart in web browser with Stripes Framework
This is the situation:
My 'metrics.jsp' page submits a couple variables that are needed to create the chart. The 'ProjectActionBean.java' calls down to a few other java classes that create the ...