摘要:
Java8 使用 stream().map()提取List对象的某一列值及排重 List对象类(StudentInfo) public class StudentInfo implements Comparable<StudentInfo> { //名称 private String name; / 阅读全文
摘要:
在SpringMVC框架中,我们经常要使用@Autowired注解注入Service或者Mapper接口,我们也知道,在Controller层中注入service接口,在service层中注入其它的service接口或者mapper接口都是可以的,但是如果我们要在我们自己封装的一些类中或者说非con 阅读全文