1.虚拟机设置网络ip错误 错误代码Bringing up interface eth0: Error: Connection activation failed: Device not managed by NetworkManager or unavailable. 一、问题原因 NetworkManager 服务和network服务冲突,需关闭NetworkManager。
二、解决步骤 1、停止NetworkManage服务 service NetworkManager stop 2、禁止NetworkManage服务开机自启动 chkconfig NetworkManager off 3、开启默认的网络管理服务network为开机自启动 chkconfig network on 4、重新启动网络服务 service network restart
2.linux中ping 其他虚拟机IP地址 一直报 destination host unreachable。ping其他的ip地址无法ping通。 解决办法:在虚拟网络编辑器里随意的修改子网的ip。点击应用,在调整回去 原理:每次更改子网应用之后原来的网络配置文件会被初始化,相当于做了一个重置的操作.
3.mybatis返回list型数据,以及左连接。mybatis返回一个list数据的时候resultType要写成java.lang.Integer。左连接的格式如下面所示。
<select id="selectCourse" parameterType="java.lang.Integer" resultType="java.lang.Integer">
select course_id
from t_student_choose_course as student
left join t_teacher_teach_course as teacher
on student.valiable_course_id = teacher.id
where student.student_id =
</select>
4.如果SQL的语句写错的话会出现check the manual that corresponds to your MySQL server version for the righ
5用list展示查询的结果
public Map<String,Object> studentSelectCourse(Integer studentId) {
User student = userMapper.selectByPrimaryKey(studentId);
Assert.isTrue(student.getIsStudent().equals("1"), "不是学生,重新选择");
List<Integer> valiableCourseIds = studentChooseCourseMapper.selectCourse(studentId);
Map<String,Object> map = new HashMap<>();
map.put("msg", "success");
valiableCourseIds.forEach(System.out::println);
List<Course> listCourse = new ArrayList<>();
for (Integer valiableCourseId : valiableCourseIds) {
listCourse.add(courseMapper.selectByPrimaryKey(valiableCourseId));
}
map.put("Course", listCourse);
return map;
}
`
其中有三个知识点: 1.Map<String,Object> map = new HashMap<>() 2.List list = new ArrayList<>() 3.foreach的使用,使用foreeach打印Map或者List 使用foreach便利迭代器里的每一个元素。
|