blob: 79a7da4b8574e076bfee6094a1258959beae813e [file] [log] [blame]
package com.alibaba.dubbo.test.service.impl;
import com.alibaba.dubbo.test.service.GenericTestService;
import org.springframework.stereotype.Service;
import java.util.Map;
import java.util.Set;
/**
* @author ken.lj
* @date 2017/09/10
*/
@Service("genericService")
public class GenericTestServiceImpl implements GenericTestService {
@Override
public void testGenericWithJsonSerialization(Map<String, Set<String>> params) {
Set<String> set = params.get("key");
System.out.print(set);
}
}