为什么 Spring Boot 的 wicket 自动配置不起作用?

问题描述 投票:0回答:1

我正在尝试使用这个库 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]

spring-boot wicket spring-boot-starter
1个回答
0
投票

这是我在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>
© www.soinside.com 2019 - 2024. All rights reserved.