Tagged Questions
Apache Wicket, commonly referred to as Wicket, is a lightweight component-based web application framework for the Java programming language conceptually similar to JavaServer Faces and Tapestry.
28
votes
10answers
9k views
Difference between Apache Tapestry and Apache Wicket
Apache Wicket ( http://wicket.apache.org/ ) and Apache Tapestry ( http://wicket.apache.org/ ) are both component oriented web frameworks - contrary to action based frameworks like Stripes - by the ...
21
votes
4answers
5k views
wicket vs Vaadin
Am torn between wicket and vaadin. i am starting a micro-isv and need to make a choice of web framework. I have narrowed down my choices to wicket and vaadin. I have used both frameworks and i love ...
21
votes
5answers
12k views
Programmatic use of Spring Security
I am using Wicket with the Wicket Auth Project for my presentation layer and I have therefore integrated it with Spring Security. This is the method which is called by Wicket for authentication for ...
20
votes
4answers
4k views
Your experience with Scala+Wicket
Could you share your experience of using Scala and Wicket together? Do they fit naturally to each other? Do you get advantage of using Scala (and FP) with Wicket over using Java? Why did (would) you ...
17
votes
3answers
4k views
Frameworks comparation: Lift, Play and Wicket
What are the advantages and disadvantages of frameworks Lift, Play and Wicket? What characteristics are best or only supported by each?
Thanks
15
votes
3answers
2k views
For my next project, a web-app, should use scala+wicket or scala+lift?
Given the various advantages of the Scala language I have decided to write my next web-application in Scala. However, should I be using Wicket or Lift? I am familiar with Wicket, and like it quite a ...
14
votes
9answers
12k views
Spring roo Vs (Wicket and Spring)
Spring roo is new framework and I found it very interesting. I have been working on web application for last 3-4 years and Always found JSPs are hard to maintain across teams if everyone is not ...
13
votes
4answers
6k views
Apache Wicket vs Apache Click
What is the difference between Apache Wicket and Apache Click?
Is Apache Click maintained? The latest release seems to be from Nov 2008
Thanks
Achilleas
13
votes
9answers
17k views
Which framework should I choose - Seam, Wicket, JSF or GWT?
I'm debating whether to use Seam, Wicket, JSF or GWT as the foundation for my presentation layer in a Java project.
I narrowed my selection of Java web frameworks down to this subset based on job ...
12
votes
2answers
3k views
How should I secure my webapp written using Wicket, Spring, and JPA?
So, I have an web-based application that is using the Wicket 1.4 framework, and it uses Spring beans, the Java Persistence API (JPA), and the OpenSessionInView pattern. I'm hoping to find a security ...
12
votes
4answers
3k views
Should I use Spring or Guice for a Tomcat/Wicket/Hibernate project?
I'm building a new web application that uses Linux, Apache, Tomcat, Wicket, JPA/Hibernate, and MySQL. My primary need is Dependency Injection, which both Spring and Guice can do well. I think I need ...
11
votes
5answers
2k views
Wicket or Playframework?
I'm totally new to Java web development and I would like to choose a good Java web framework to learn. I've found some really good echoes regarding the Apache Wicket framework and the Playframework. I ...
11
votes
2answers
934 views
Template engine for Google App Engine
Can you recommend a template engine for GAE?
I like Wicket, but it carries a lot of server-side state, which is something that is not very compatible with the GAE approach.
Is FreeMarker supported on ...
11
votes
8answers
4k views
What are the advantages of Apache Wicket?
I'm not a Java developer so I might get some terms wrong... but.
An application I integrate with is moving from Spring to Wicket. While it should not affect my integration with it I got to wondering ...
10
votes
4answers
357 views
using images for links with <wicket:link>
I'm trying to use an image for a link like so:
<wicket:link>
<a href="UploadPage.html">
<img src="/logo.png"/>
</a>
</wicket:link>
In the rendered ...
10
votes
5answers
1k views
What are the disadvantages of Apache Wicket?
I've read a lot about the good things about Apache Wicket, but it's hard to find the bad things. Since no framework is always the right solution for every problem, what are the disadvantages of Wicket ...
10
votes
2answers
977 views
Is it difficult to make a mainly stateless web application with Wicket?
I've been working with Wicket for month or two now, making simple web applications with it and getting used to models and so forth. Now I'd like to move forward and see if I can put what I've learned ...
10
votes
3answers
1k views
Dynamic markup in Wicket
Is it possible to generate the markup for a MarkupContainer dynamically, i.e. without storing an HTML file for it?
I thought about reading the markup as a plain string from the database to offer ...
8
votes
3answers
660 views
How do I mimic HybridUrlCodingStrategy in Wicket 1.5?
We have an existing Java Wicket 1.4 application which uses the HybridUrlCodingStrategy extensively:
mount(new HybridUrlCodingStrategy("/myurl", MyPage.class));
This results in our URL's looking ...
8
votes
2answers
641 views
Anonymous inner classes in C#
I'm in the process of writing a C# Wicket implementation in order to deepen my understanding of C# and Wicket. One of the issues we're running into is that Wicket makes heavy use of anonymous inner ...
8
votes
2answers
2k views
Wicket 1.5 compared to 1.4
What are the wicket 1.5 new features in short as compared to the most recent 1.4 release?
The first release candidate will be released very soon. We're thinking about the introduction of wicket in ...
8
votes
4answers
341 views
How does Spring fit into my application architecture?
I'm currently rebuilding an existing PHP application using Java. I therefore have an existing frontend GUI and an existing database schema that I'm working with.
Here is the technology stack I'm ...
8
votes
8answers
3k views
Now with GWT 2, what are the advantages over wicket and likewise?
Apart from the argument of Wicket's simplicity (that is, Wicket is a simpler system IMHO) and GWT's responsiveness in the client (GWT's client side state and JavaScript - potentially complex client ...
7
votes
1answer
120 views
How do I keep entities (or their associations) attached to the current persistence context accross multiple requests (using Wicket & JPA)?
I am working on a Wicket-based web app on Java EE.
I am trying to find a way to ensure that any entities used as model objects are always attached to the current EntityManager before Wicket tries to ...
7
votes
6answers
2k views
Does it make sense to use Google Web Toolkit (GWT) as a full-blown Java web framework?
I am interested in the possibility that GWT could serve as the basis for my entire presentation layer.
I would be interested to know if anyone has tried this successfully - or unsuccessfully - and ...
7
votes
4answers
8k views
How do I call Java code from JavaScript code in Wicket?
If I can do this, how do I call Java code (methods for instance) from within JavaScript code, in Wicket.
6
votes
2answers
204 views
Wicket: how to render page programmatically and get result as string?
I'm in the process of converting an app to use i18n/l10n on all its pages. I'm very happy with Wicket's support for this, and it's going well so far. The one tricky part I've run into is the ...
6
votes
2answers
249 views
Wicket: hide comments in HTML
JSPs support the <%-- comment --%> syntax for comments, which is a way to comment markup code such that it doesn't get included in the emitted HTML.
Is there a way to do this in Wicket?
6
votes
1answer
4k views
Youtube embed: Unsafe JavaScript attempt to access frame
We have a Wicket app with a page that includes an embedded Youtube video. The video embeds and plays fine, but apparently it causes the rest of the page to not render- it seems that the DOM elements ...
6
votes
3answers
374 views
Generating commented-out content with Wicket
For debug reasons, and on a whim, I'd like to include certain information in a Wicket page's HTML output that is enclosed in HTML comments.
The output would be something like...
<!--
<div ...
6
votes
3answers
682 views
Best resources for learning Wicket? [closed]
I'm looking to learn Apache Wicket. What resources would you recommend for someone with plenty of Java and web development experience (but ~zero experience with Wicket or similar frameworks)?
Found 3 ...
6
votes
7answers
3k views
log4j.properties being ignored
I have a Java EE 6 Wicket application deployed with maven using IntelliJ IDEA 9.0.3 on glassfish v3.0.1. I use slf4j-log4j12-1.5.6 with slf4j-api-1.5.8 and log4j-1.2.16 for logging.
It was ...
6
votes
3answers
5k views
Wicket: how to redirect to another page?
How do I redirect to another page using Wicket? IIRC, some exception has to be thrown in the constructor, but I don't remember which one. Thanks in advance.
6
votes
5answers
3k views
Wicket: Relative to absolute URL or get base URL
If I have a relative path to a static asset (flash/blah.swf), what is the best way to programmatically convert this to an absolute URL (http://localhost/app/flash/blah.swf)? Or what is the best way to ...
6
votes
4answers
1k views
Wicket or Grails for a content centric site?
I want to build a web application like a wiki and a forum. There will be much more readers than editors. My favourites to implement it are Grails and Wicket.
Grails: I like the integrated environment ...
6
votes
1answer
651 views
What is the preferred way to do site templates and themes with Wicket?
I'm just learning Wicket, and Googling yields different results about how to theme/template a site using Wicket. It appears that the common methods are:
Markup Inheritance (description)
Borders ...
5
votes
1answer
296 views
Serving dynamic content with Wicket 1.5
I have my Wicket 1.4 code to have a link to download a file which is generated programatically:
protected class MyWebResource extends WebResource {
public IResourceStream getResourceStream() {
...
5
votes
1answer
273 views
Why does running multiple Wicket applications cause AJAX conflicts?
When I open two Wicket web applications in the same browser, it seems there are AJAX conflicts as I see a full page refresh in place of a partial refresh. This is true even if the applications are on ...
5
votes
2answers
559 views
Wicket: Close ModalWindow on keypress
I would like to be able to close a ModalWindow when the user presses a key, in my case ESC.
I have a Javascript listener for the keypress which calls the click event of the cancel button's ID:
...
5
votes
1answer
775 views
In wicket, how can I create RadioGroups that are not defined by component hierarchy/layout?
I am using Wicket and would like to create a grid of radio buttons using HTML, as shown below (outer lists will be displayed vertically, inner lists will be displayed horizontally).
The number of ...
5
votes
3answers
419 views
Learning Curves for Java Frameworks
We're considering experimenting with a new Java framework for building some internal web apps. We have a mixture of Perl/Ruby/Java programmers and are trying to standardize as much as possible. I'm ...
5
votes
1answer
657 views
Wicket : Notify if page model has been changed
The problem is like this; A webpage contains multiple form elements, which can be altered and saved by the user via a save button, or changes can be discarded.
If the user attempts to navigate away ...
5
votes
7answers
737 views
Which companies/websites are using the wicket framework?
I am currently evaluating wicket for the use of a rich intranet application, and I am very curious if there are big projects/websites which take the use of the apache wicket framework?
There are only ...
5
votes
1answer
2k views
JSON formatting (Sending JSON via jQuery AJAX post to Java/Wicket server)
I'm using jQuery to post JSON to a Java server, but I think my JSON must be wrong. Here's an example of my data and how I'm sending it:
var lookup = {
'name': name,
'description': ...
5
votes
4answers
547 views
How do I make IntelliJ recognize wicket html tags?
I'm using IntellIJ with Apache Wicket and IntelliJ is showing me that tags like <wicket:extend> and <wicket:container> and adding wicket:id to other html tags is not valid.
What steps do ...
5
votes
5answers
705 views
Object equality in context of hibernate / webapp
How do you handle object equality for java objects managed by hibernate? In the 'hibernate in action' book they say that one should favor business keys over surrogate keys.
Most of the time, i do not ...
5
votes
6answers
4k views
Best Web2.0 framework for Java? [closed]
this question is quite related to the one asked here, however, I am not interested in the best web framework, but in the best web2.0 framework for Java. First, here is what I want to achieve:
...
5
votes
3answers
464 views
Is it there a Ruby equivalent of Java's Wicket?
The idea would be to replace ERB with templates that are pure XHTML and that the view would be pure code manipulating the template content.
Have this been done already ?
5
votes
1answer
1k views
Globally accessible resources in Wicket application
Currently, I have an Application which consists of a BasePage which as a header (panel), footer(panel) and in the center for inherited page content. The problem I am running into is with ...
5
votes
3answers
7k views
Wicket Dynamic Image URL
Short question:
I need to turn a dynamic image pulled from a database into a URL without adding a component to the displaying page (such as using a NonCachingImage) using Wicket.
The perfect solution ...