demo1
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:spring-mvc.xml"})
@Slf4j
public class DemoTest {
@Autowired
private DemoService demoService;
@Test
public void demo1() {
demoService.test("20230327");
}
}
demo2
@SpringBootTest(classes = DemoStarter.class)
@RunWith(SpringRunner.class)
@Log4j
public class DemoTest {
@Autowired
private DemoService demoService;
@Test
public void test1(){
demoService.Test();
}
}