1,pojo package com.songyan.dao; import com.songyan.pojo.Student; public interface StudentDao { public void insertStudent(Student student); public void deleteStudent(String id); public void updateStudent(Student student); public Student selectStudent(…