我通过Spring Boot(2.0.X,可能也有1.X版本)通过了2个集成测试,但是当我使用最新的版本2.1.0时,第一个失败了,它返回404而不是200。 ..
有什么主意吗? 我在发行说明中找不到对此的任何重大更改。
谢谢
<script src="https://unpkg.com/vue@latest/dist/vue.js"></script>
<div id="app">
<label>Delay: <input type="number" v-model="delay"></label>
<three-dot-menu :show="showMenu" @save-screens="showDialog"></three-dot-menu>
</div>
<template id="three-dot-menu-template">
<div class="menu" v-show="show">
this is the menu
<button @click="openDialog">Open dialog</button>
</div>
</template>
答案 0 :(得分:0)
好,所以我从Spring Boot社区得到了答案。
我需要用TestController
注释我的@TestConfiguration
。
两项测试现在都通过了。