Java操纵MongoDB_2(应用场景设置)

2023-04-27,,

应用场景设置

以学生的信息管理系统为例,演示学生信息的增删改查。这里定义学生的Bean类为:

Student.java

public class Student {

private String studentId;

private String name;

private int weight;

private int height;

private Date birthday;

public String getStudentId() {

return studentId;

}

public void setStudentId(String studentId) {

this.studentId = studentId;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public int getWeight() {

return weight;

}

public void setWeight(int weight) {

this.weight = weight;

}

public int getHeight() {

return height;

}

public void setHeight(int height) {

this.height = height;

}

public Date getBirthday() {

return birthday;

}

public void setBirthday(Date birthday) {

this.birthday = birthday;

}

@Override

public String toString() {

return "Student [studentId=" + studentId + ", name=" + name

+ ", weight=" + weight + ", height=" + height + ", birthday="

+ birthday + "]";

}

public Student(String studentId, String name, int weight, int height,

Date birthday) {

super();

this.studentId = studentId;

this.name = name;

this.weight = weight;

this.height = height;

this.birthday = birthday;

}

public Student() {

}

}

并且定义了学生的增删改查接口如下:

IStudentDao.java

public interface IStudentDao {

void insert(Student s);

void update(Student s);

void delete(String studentId);

}

操纵MongoDB的接口实现文件如下,

IStudentDaoImpl.java

public class IStudentDaoImpl implements IStudentDao{

@Override

public void insert(Student s) {

//暂未实现

}

@Override

public void update(Student s) {

//暂未实现

}

@Override

public void delete(String studentId) {

//暂未实现

}

}


《Java操纵MongoDB_2(应用场景设置).doc》

下载本文的Word格式文档,以方便收藏与打印。