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
3
votes
3 answers

Spring and Stripes Security Design

I'm building a web application using Stripes and Spring. It needs to have a login/authentication feature. Right now I store user information separate from user credentials in the database. My User model does not contain the credentials as I don't…
djunforgetable
  • 859
  • 3
  • 9
  • 16
3
votes
1 answer

Unable to read TLD "META-INF/stripes.tld" from JAR file error

I'm encountering a bit of an unusual error after a major upgrade of our web application to ivy for build management which also included updating all of the major libraries involved as well. While we are managing to pass our unit tests, when we…
rjzii
  • 14,236
  • 12
  • 79
  • 119
3
votes
1 answer

How to use Stripe Payment Element with subscription?

I have seen examples of how to use the Card Component alongside the Stripe API to create a customer and attach a subscription, but I do not understand how to do this with the Payment Element. I have a React app that essentially one page has the…
3
votes
2 answers

Flutter Stripe does not show/present payment sheet

In my flutter project, I'm attempting to integrate a Stripe payment using flutter_stripe package. I've intialize and configured correctly. But when trying to present paymentSheet nothing showing or happen. There's also no error cause. As it stuck at…
Dr_Usman
  • 486
  • 4
  • 11
3
votes
1 answer

sitemesh layout

The Stripes web framework includes a layout engine which provides the following feature: Layout Definition File - layout.jsp Header
Footer
Page Using…
Dónal
  • 185,044
  • 174
  • 569
  • 824
3
votes
2 answers

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 inside tag of layout_main.jsp but it…
ali
  • 350
  • 2
  • 15
3
votes
1 answer

How to retrieve a message with a specific key from 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: getContext().getMessages().add(new…
kaushik
  • 2,308
  • 6
  • 35
  • 50
3
votes
2 answers

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 (possibly with guice binding the connection to a…
Will
  • 1,622
  • 4
  • 25
  • 39
3
votes
2 answers

Upload file in Stripes, how to use DefaultMultipartWrapperFactory

I'm trying to develop a small Stripes project that allows the user to uoload files, the basic implementation of the ActionBean looks like so: public class UploadActionBean extends BaseActionBean{ private FileBean fileBean; private final String…
JBoy
  • 5,398
  • 13
  • 61
  • 101
3
votes
2 answers

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 examples of where you can use Groovy (instead of…
Dónal
  • 185,044
  • 174
  • 569
  • 824
3
votes
1 answer

Uploading multiple files with stripes

I am trying to upload multiple files and bind them to a java array in the stripes framework. I have read the documentation here and this question on SO. However, I am still having issues. While running in debug, if I upload multiple files I notice…
Hardrock302
  • 391
  • 5
  • 20
3
votes
1 answer

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 till this moment I can't even create the simplest…
Roman
  • 64,384
  • 92
  • 238
  • 332
3
votes
2 answers

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. However, if an error is thrown during a jQuery Ajax call,…
lucas
  • 6,951
  • 4
  • 33
  • 34
3
votes
1 answer

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, this takes me to a different JSP with a pre-populated…
Jimmy
  • 16,123
  • 39
  • 133
  • 213
3
votes
2 answers

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, formatNumber doesnt work when setLocale's value…
kovike
  • 531
  • 2
  • 8
  • 16
1 2
3
24 25