| 1. |
Dependency To Start Wicket? |
|
Answer» <dependency> <groupid>org.apache.wicket</groupid> <artifactid>wicket</artifactid> <version>1.4.17</version> </dependency> Wicket need SLF4J ! You have to INCLUDE the slf4j logging implementation, OTHERWISE Wicket will be FAILED to start. Wicket need resource filter Remember to add the resource filter, Wicket puts all files in same package FOLDER, if you didn’t define the resource filter to include everything “<include>*</include>” , “html”, “properties” or other resources files MAY failed to copy to the correct target folder. <dependency> <groupid>org.apache.wicket</groupid> <artifactid>wicket</artifactid> <version>1.4.17</version> </dependency> Wicket need SLF4J ! You have to include the slf4j logging implementation, otherwise Wicket will be failed to start. Wicket need resource filter Remember to add the resource filter, Wicket puts all files in same package folder, if you didn’t define the resource filter to include everything “<include>*</include>” , “html”, “properties” or other resources files may failed to copy to the correct target folder. |
|