相关文章
spring-boot 操作 mongodb 数据库
如何使用 spring-boot 操作 mongodb 数据库
配置文件:
spring:data:mongodb:host: 127.0.0.1database: fly_articleDbport: 27017# 可以采取 mysql 写法# uri: mongodb://127.0.0.1/fly_articleDb依赖信息:
<?xml version"1.0" encoding"UTF-…
建站知识
2024/11/11 11:25:30
typescript核心
类型注解
变量后面约定类型的语法,就是类型注解
作用: 约定类型,明确提示
// 类型注解let age:number 18;
age 19;
// age "hello"; //不能将类型“string”分配给类型“number”:number 就是类型注解,为变量提供类型约束约…
建站知识
2024/11/14 23:48:51
Linux 安全 - Credentials
文章目录 一、简介1.1 Objects1.2 Object ownership1.3 The objective context1.4 Subjects1.5 The subjective context1.6 Actions1.7 Rules, access control lists and security calculations 二、Types of Credentials2.1 Traditional UNIX credentials2.2 Capabilities2.3 …
建站知识
2024/9/16 19:59:13
【word】从正文开始设置页码
在写报告的时候,会要求有封面和目录,各占一页。正文从第3页开始,页码从正文开始设置
word是新建的
分出三节(封面、目录、正文)
布局--->分割符--->分节符--->下一页 这样就能将word分为3节,分…
建站知识
2024/10/25 2:24:39
docker build 构建属于自己的简易镜像
文章目录 一、前置工作 二、编写Dockerfile三、构建镜像 一、前置工作
1.安装c编译器
yum install -y gcc gcc-c2.安装c静态库
yum install -y glibc-static3.创建一个.c文件,将代码写入
vim myhello.c#include <stdio.h>
int main()
{printf("hello…
建站知识
2024/9/27 0:04:44
AtCoder Beginner Contest 322
A - First ABC 2
AC代码:
#include<bits/stdc.h>
#define endl \n
//#define int long long
using namespace std;
int n;
string s;
void solve() {cin>>n>>s;s s;for(int i1;i<n-2;i){if(s[i]A&&s[i1]B&&s[i2]C){cout<<i<&l…
建站知识
2024/11/9 0:14:52
【DRAM存储器十】SDRAM介绍-刷新
👉个人主页:highman110 👉作者简介:一名硬件工程师,持续学习,不断记录,保持思考,输出干货内容 参考资料:《镁光SDRAM数据手册》、《PC SDRAM specification》 从前面的…
建站知识
2024/10/26 19:14:32
【Cesium创造属于你的地球】相机系统
相机系统里面有setView,flyTo,lookAt,viewBoundingsphere这几种方法,以下是相关的使用方法,学起来!!! setView
该方法可以直接切换相机视口,从而不需要通过一个飞入的效…
建站知识
2024/11/16 13:08:09