MarcGiffing / wicket-spring-boot

Spring Boot starter for Apache Wicket
154 stars 62 forks source link

Dependency spring-boot-starter-web is still needed #63

Closed MarcGiffing closed 8 years ago

MarcGiffing commented 8 years ago

It seems that Springs spring-boot-starter-web dependency is still required. We have to options:

  1. Try to configure the application without spring-boot-starter-web
  2. Add the spring-boot-starter-web to the wicket-spring-boot-starter as a required dependency
<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-web</artifactId>
</dependency>
MarcGiffing commented 8 years ago

The main problem which bothers me is that Spring Boot Starter Web is taking control of all requests which are not mounted by wicket. If you access a page which does not exists you will get Springs "Whitelabel Error Page".