```shell !/usr/bin/env bash Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file dis ...
分类:
其他 时间:
2020-04-27 00:03:05
收藏:
0 评论:
0 赞:
0 阅读:
372
private List<Student> GetStudentList() { #region 初始化数据 List<Student> studentList = new List<Student>() { new Student() { Id=1, Name="赵亮", ClassId=2, A ...
分类:
其他 时间:
2020-04-27 00:02:40
收藏:
0 评论:
0 赞:
0 阅读:
62
MongoDB存储 1、链接MongoDB 指定数据库 指定集合 import pymongo ## 连接数据库 client = pymongo.MongoClient(host='localhost', port=27017) ## 指定数据库 kuluma db = client.kuluma ...
分类:
数据库技术 时间:
2020-04-27 00:02:19
收藏:
0 评论:
0 赞:
0 阅读:
70
SpringBoot之给属性赋值的几种方式 一:yml可以直接给对象赋值 ①原始的注入方式: import org.springframework.beans.factory.annotation.Value; 使用spring中的value来给对象的属性赋值。 ②通过yml来进行对象的属性赋值 - ...
分类:
编程语言 时间:
2020-04-27 00:01:52
收藏:
0 评论:
0 赞:
0 阅读:
195