wicket Questions
4
Solved
It's pretty straightforward to dynamically add a CSS class to a component in Java code using an AttributeAppender:
component.add(new AttributeAppender("class", true, new Model<String>("foo")...
3
I'm trying to use the Wicket Project 'QuickStart' with
Netbeans 11, Java 11, Tomcat 10, Wicket 9, and Ubuntu 18.04.
When I install the WAR package and start it, it throws:
20-May-2020 09:23:37.067 ...
8
Solved
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 lo...
11
Solved
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 previo...
Initial asked 9/8, 2010 at 21:43
4
Solved
I have a Wicket panel in which I want to inject bean using @SpringBean
public class SomePanel extends Panel {
@SpringBean
private BlogSummaryMailGenerator blogSummaryMailGenerator;
}
But thi...
Magma asked 7/2, 2016 at 23:42
15
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...
1
Need guidance regarding fixing of class not found error at runtime. I have checked all the similar answers, however wasn't able to solve the issue I'm facing.
The project compiles, war file gets de...
Halverson asked 15/4, 2021 at 17:58
2
I have a wicket project with lambda expressions. On one page when user clicks on back button my application crashes on:
java.lang.IllegalArgumentException: Invalid lambda deserialization
at x.y.z...
9
Solved
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 scopin...
7
Solved
How do you set focus on a component with Apache Wicket? Searching leads to very little information, mostly on setting the default field. I do not want to set a default field, rather I am looking to...
3
Solved
I am following this example of a Hello World Wicket application
https://www.ibm.com/developerworks/web/library/wa-aj-wicket/
In particular I placed HelloWorld.html in my source directory next to ...
5
Currently I am programming the Web Application based on Vaadin. I am quite happy with the learning cycle and the way how easy UI can be designed.
In general pluses of Vaadin are:
"Native" UI pro...
Gemsbok asked 4/1, 2012 at 20:23
6
Solved
Wicket has a flexible internationalisation system that supports parameterising UI messages in many ways. There are examples e.g. in StringResourceModel javadocs, such as this:
WeatherStation ws = ...
Bivalve asked 20/10, 2010 at 10:35
3
Solved
How to convert a Ant project to Maven project? A sample project that would link (a Wicket project)
Thanks
5
Solved
I want to turn off serialization in my Wicket app and store all page/session information in RAM. My application has a very small number of users (generally 1); I do not need a cluster deployment; a...
3
Solved
I have started learning Wicket framework and I came across wicket models and I read about Model(), CompouneModel() and CompoundPropertyModel() but I didn't get the actual difference between them. I...
Cherycherye asked 13/5, 2015 at 9:28
7
Solved
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
Upstairs asked 22/12, 2011 at 10:23
3
Solved
The class used (in Java, third party API, not changeable):
public class BookmarkablePageLink<T> extends Link<T> {
public <C extends Page> BookmarkablePageLink(final String id, ...
5
Solved
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.
Elspet asked 26/7, 2010 at 12:40
2
I am testing a web application (Apache Wicket Based) via Intellij IDEA Tomcat integration. There I noticed that the webapp consider its running in bin folder of the tomcat. Also when I called the S...
Groyne asked 31/8, 2013 at 17:51
2
Solved
In Tomcat Manager on the Page "Sessions Administration", there is a column Guessed User name. How can i set this column from within my Wicket Session?
Note: I have successfully overridden Authent...
2
I downloaded wicket examples 1.6.0 and built successfully in netbeans7.2. but got errors when I tried to deploy on tomcat 7:
Cannot deploy the module. The context.xml file seems to be broken. Chec...
6
Solved
Both GWT and Wicket are stateful, java object oriented based. GWT is completely client based with features like javascript optimization, CSS optimization, and I'm pretty new to Apache Wicket.
The ...
Acanthaceous asked 4/1, 2011 at 22:27
5
Solved
I have a DropDownChoice like below:
final DropDownChoice<Term> terms = new DropDownChoice("terms", new Model<Term>(), new Model(new ArrayList(termDao.findAll())), new IChoiceRenderer&...
Mongo asked 9/1, 2012 at 11:24
2
Solved
Hallo, a Wicket i18n question:
I have a javaScript file, that holds strings I want to localize.
Ideally I want to localize the whole file. Something like
my.js
my_de.js
my_fr.js
...
where wicke...
Tacitus asked 20/10, 2010 at 8:8
1 Next >
© 2022 - 2024 — McMap. All rights reserved.