1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.hxh.spring.test;
|
| import com.yeshi.buwan.domain.Config;
| import com.yeshi.buwan.service.imp.ConfigService;
| import com.yeshi.buwan.util.BeanUtil;
| import org.junit.Test;
|
| import java.util.List;
|
| public class ConfigTest {
|
| @Test
| public void test1() {
| ConfigService configService = BeanUtil.getBean(ConfigService.class);
| List<Config> configList = configService.getConfig(44L, 1);
| }
|
| }
|
|