Questions tagged [wicket]

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.

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.

It uses no XML configuration, and POJO Java components are bound to HTML fragments by tags and naming convention. Only configuration needs to be done is in the web.xml to map the Wicket servlet.

3749 questions
94
votes
15 answers

How to solve could not create the virtual machine error of Java Virtual Machine Launcher?

I am working on java wicket framework and Apache tomcat. When I tried to start tomcat, it shows Java Virtual Machine Launcher pop window "Could not create the Java Virtual Machine". After clicking on "OK" button on Pop window, it shows the error on…
Dnyani
  • 1,133
  • 3
  • 11
  • 15
70
votes
9 answers

Scope 'session' is not active for the current thread; IllegalStateException: No thread-bound request found

I have a controller that I'd like to be unique per session. According to the spring documentation there are two details to the implementation: 1. Initial web configuration To support the scoping of beans at the request, session, and global session…
Jon
  • 9,815
  • 9
  • 46
  • 67
56
votes
5 answers

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 coming after the embed simply don't show up on the…
George Armhold
  • 30,824
  • 50
  • 153
  • 232
48
votes
8 answers

Wicket vs Vaadin

I 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 them both. however I need to make a choice. If…
joshua
  • 4,118
  • 3
  • 40
  • 53
47
votes
8 answers

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 Apache Foundation. Both allow you to build your…
KingOfCoders
  • 2,253
  • 2
  • 23
  • 34
39
votes
4 answers

How to resolve Error listenerStart when deploying web-app in Tomcat 5.5?

I've deployed an Apache Wicket web-application that uses Spring and Hibernate to my Tomcat 5.5 instance. When I navigate to the Tomcat Manager interface I see that the web-application I deployed is not running. When I press 'Start' I get the…
John
  • 2,571
  • 6
  • 32
  • 40
39
votes
6 answers

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 me: @Override public boolean authenticate(String…
user14070
35
votes
4 answers

Frameworks comparation: Lift, Play and Wicket

What are the advantages and dis­advantages of frameworks Lift, Play and Wicket? What characteristics are best or only supported by each? Thanks
adelarsq
  • 3,718
  • 4
  • 37
  • 47
29
votes
4 answers

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 prefer Wicket over Lift?
Alexey
  • 9,197
  • 5
  • 64
  • 76
26
votes
3 answers

How to convert Ant project to Maven project

How to convert a Ant project to Maven project? A sample project that would link (a Wicket project) Thanks
adelarsq
  • 3,718
  • 4
  • 37
  • 47
25
votes
4 answers

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 decided to go for one of 'em; but I need to…
wassimans
  • 8,382
  • 10
  • 47
  • 58
24
votes
7 answers

delete version number in url

How can I delete or hide the version number in the URL introduced in Wicket 1.5? Mounting a page doesn't help. http://localhost/MyPage/SubPage?0
rotsch
  • 1,909
  • 16
  • 36
23
votes
3 answers

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 classes, and C# has no anonymous inner…
cdmckay
  • 31,832
  • 25
  • 83
  • 114
22
votes
10 answers

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 why they would do this? From what I know Spring…
dtc
  • 10,136
  • 16
  • 78
  • 104
22
votes
5 answers

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.
Mot
  • 28,248
  • 23
  • 84
  • 121
1
2 3
99 100