我正在尝试使用这个库 https://github.com/MarcGiffing/wicket-spring-boot 我包含了 Maven 库。我复制了@SpringBootApplication类、HomePage类和HomePage html。据我了解,仅此之后它就应该起作用。我可以启动应用程序,但在 localhost:8080 我看到了
内部错误 返回首页
我错过了什么?
更新堆栈跟踪 org.apache.wicket.markup.MarkupNotFoundException:无法确定标记。组件尚未连接到父组件。 [页面类 = com.example.demo.HomePage,id = 0,渲染计数 = 1]
这是我在pom文件中遗漏的内容
</build>
</project>
....
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>