Questions tagged [stripes]

Stripes is an open source web application framework based on the model-view-controller pattern.

Stripes is an open source web application framework based on the model-view-controller pattern. It aims to be a lighterweight framework than Struts by using Java technologies such as annotations and generics that were introduced in Java 1.5, to achieve "convention over configuration". This emphasizes the idea that a set of simple conventions used throughout the framework reduce configuration overhead. In practice, this means that Stripe applications barely need any configuration files, thus reducing development and maintenance work.

Stripes Framework (stripesframework.atlassian.net)

Stripes Framework (Wikipedia)

361 questions
19
votes
6 answers

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 good job of minimising the unpleasant parts of…
Andrew Whitehouse
  • 2,738
  • 3
  • 31
  • 35
14
votes
2 answers

dependency inject servlet listener

In my Stripes app I define the following class: MyServletListener implements ServletContextListener, HttpSessionListener, HttpSessionAttributeListener { private SomeService someService; private AnotherService anotherService; // remaining…
Dónal
  • 185,044
  • 174
  • 569
  • 824
12
votes
6 answers

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 stateless as possible (as the Wicket way suggests…
Sandeep
  • 1,745
  • 3
  • 20
  • 30
12
votes
1 answer

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 that with our brand spanking new Spring web…
Rosdi Kasim
  • 24,267
  • 23
  • 130
  • 154
11
votes
4 answers

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 which requires the following…
JMM
  • 3,922
  • 6
  • 39
  • 46
10
votes
2 answers

Why is contextInitialized() called multiple times?

I'm running a Stripes web app on Jboss 4.2.3.GA and am trying to call a method when I start JBoss. I created a ServletContextListener like so: public class TimerContextListener implements ServletContextListener { @Inject private…
TomahawkPhant
  • 1,130
  • 4
  • 15
  • 33
9
votes
5 answers

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 I couldnt contact any of the administrators.…
Harald
  • 107
  • 1
  • 1
  • 2
8
votes
3 answers

Can you use Java EE 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 save costs on hosting.
Mr. Will
  • 2,298
  • 3
  • 21
  • 27
8
votes
5 answers

Good Stripes tutorials / examples?

The company I just started working for is using Stripes for parts of its web page development these days, and while it seems to be a nice enough web framework it no one really uses it-- it is almost non existent on the 'net. It's not even first in…
SCdF
  • 57,260
  • 24
  • 77
  • 113
7
votes
1 answer

How to clear a bean field with Stripes

In a JSP I have the following field: This field is in my action bean(snippet): public class CreateClaim implements ActionBean { private String email; public void setEmail(String email) { this.email…
enkor
  • 7,527
  • 3
  • 31
  • 55
6
votes
3 answers

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 the ModelAndView instance created by my…
idle
  • 1,117
  • 9
  • 17
6
votes
3 answers

Setting createdBy and updatedBy in JPA entities automatically

I'm working on a JPA (Hibernate implementation of), Spring and Stripes web app. I have a number of JPA entities that have the following fields in common for both audit and query purposes: createdBy - the user ID of the person who created the…
JMM
  • 3,922
  • 6
  • 39
  • 46
6
votes
1 answer

How to use HTML field name in javascript if the field name contains a "." (dot)?

I am using and in my jsp page. I tried to see the source code the browser generates using firebug and it showed to me that the form name is "checkForm" and all of the field names has "check." as a prefix. So one of the…
WowBow
  • 7,137
  • 17
  • 65
  • 103
5
votes
2 answers

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 http://localhost:8080/getting_started/Hello.action. Here is the before…
Andrew Whitehouse
  • 2,738
  • 3
  • 31
  • 35
5
votes
1 answer

StreamingResolution Stripes

Could anyone help me with java Framework - stripes? I try to upload image with stripes:file, resize on the server and return with new StreamingResolution return ("image / jpeg"... I dont now exactly how to send with StreamingResolution and how can I…
ispan
  • 51
  • 1
  • 2
1
2 3
24 25