# springboot_ebean **Repository Path**: qianggetaba/springboot_ebean ## Basic Information - **Project Name**: springboot_ebean - **Description**: springboot与ebean结合的简单使用demo - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-12-25 - **Last Updated**: 2021-12-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # springboot_ebean springboot与ebean 使用范例
有三张表
student 学生表 id name age gender email stuNum学生号
sc 选课表 id stuNum courseNum
course 课程表 id name takeTime学时 courseNum课程号
demo主要是基本查询,对学习和了解ebean有很大帮助 ebean 文档:http://ebean-orm.github.io/docs/ (hint:页面右边是系列导航)
ebean 查询 ebeanServer.createQuery Hello.java:24 ebeanServer.find Hello.java:25 StudentEntity.find Hello.java:53 多对多查询 Hello.java#test3 #test4