一对多Spring结果映射

时间:2019-02-13 13:16:39

标签: java spring spring-boot jdbc

这是我的第一次发帖问题,希望有人可以帮助我将结果映射到:

List<Clients>

这是来自数据库的示例结果:

NameID   |  Name      | Notes                  | Date
1        | Client1    | Get this on monday.    | null
1        | Client1    | Get this on wednesday. | null
2        | Client2    | Meet on saturday.      | null

这是我的模式(java类)。

Name.java

private int NameId;
private String ClientName;
.. getter and setter

Notes.java

private int NotesId;
private String ClientNote;
.. getter and setter

Clients.java

private Name name;
private List<Notes> notes;
.. getter and setter

ClientResultSet.java

class ClientResultSet implements ResultSetExtractor<List<Clients>>{

    @Override
    public List<Clients> extractData(ResultSet rs) throws SQLException, DataAccessException {
        Map<int, Clients> map = new HashMap<int, Clients>();
        while(rs.next()) {
            int NameId= rs.getInt("NameId");
            Clients clients= map.get(contactId);

            if (clients== null) {

                // I'm losing my thoughts here. :'(
            }
        }
        return null;
    }

}

我想要实现的结果:

[
  {
    name:{
      NameId: 1,
      Name: "Client1"
    },
    notes[
      {
         NotesId: 1,
         ClientNote: "Get this on monday",
         Date: null
      },
      {
         NoteId: 2,
         ClientNote: "Get this on wednesday",
         Date: null
      }
    ]
  },
  {
    name:{},
    notes:[{},{}]
  }
  ... and so on
]

我正在阅读ResultSetExtractor,但是我不知道如何实现它。预先感谢,祝您有美好的一天。

2 个答案:

答案 0 :(得分:0)

这是数据库的外观,您将创建4个表,分别是client,name,note,client_note。 client_note表应具有一对多关系的客户ID和便笺ID。因此,如果您要获取ID为1的客户的所有备忘;您的sql看起来像这样

SELECT note_id FROM client_note WHERE clientId = 1;

然后您可以使用注释ID来查询注释表中的实际注释对象;

client
   int id;
   int nameId (foreignKey referencing name.id);

name
   int id;
   String ClientName;

note
   int id;
   String ClientNote;

client_note
    int id;
    int clientId  (foreignKey referencing client.id);
    int noteId  (foreignKey referencing note.id);

希望这有帮助吗?

答案 1 :(得分:0)

我认为每个人都误解了我的问题,我也不怪每个人。我喜欢我的问题得到关注,并感谢所有向我提出建议的人。

如果有人遇到与我相同的问题,我在这里找到了答案: multiple one-to-many relations ResultSetExtractor

再次感谢大家,祝您有愉快的一天。