摘要:
如果 对象 GxyJobEntity 中两个属性 studentId 和 planId 相等,则保留一个,去掉多余的。 输出: set:0-->[]a:GxyJobEntity [jobId=null, studentId=stu001, planId=plan001, userId=user001 阅读全文
摘要:
mongdb 查询: db.mogu_attendance.aggregate([ { "$match":{ "schoolId" : "f11c8ea12f457dbc19c768a8bb6357f8"}} , { "$project":{address:1,memberId:1,attenden 阅读全文
摘要:
net.sf.json.JSONArray; 的 阅读全文
摘要:
mongodb 的分页查询: 查询个数: 设置mongobd 表保留的文档数: MongoDB有两种集合能实现比较类似的功能。一种是TTL(Time To Live)集合,mongod会自动删除过期的文档。http://docs.mongodb.org/manual/tutorial/expire- 阅读全文
摘要:
docker 安装mysql: docker run --name mysqlserver -e MYSQL_ROOT_PASSWORD=root_password -d -i -p 9627:3306 mysql:5.7 docker端口 9627 阅读全文
摘要:
1:把字符串列表转成大写 放到一个字符串列表中:List<String> test = Stream.of("tomc", "javk", "Hello", "DICK").map(a -> a.toUpperCase()).collect(toList()); System.out.println 阅读全文
摘要:
更新gradle的依赖后,刷新项目引入jar包的方法: view--Tool Buttons 在右侧 Gradle 点刷新 阅读全文
摘要:
spring boot 和 mybatis 中使用 pagehelper: 1、 在pom.xml 中加入pagehelper的引用: 2. 在 application.properties 文件中增加: 在 application.properties 中增加以下的语句,打开 com.exampl 阅读全文
摘要:
把mybatis 的配置文件放到 src/main/resources 下,文件内容如下: 阅读全文