最新 最热

properties到yaml演变

腾讯云开发者社区是腾讯云官方开发者社区,致力于打造开发者的技术分享型社区。提供专栏,问答,沙龙等产品和服务,汇聚海量精品云计算使用和开发经验,致力于帮助开发者快速成长与发展,营造开放的云计算技术生态圈。...

2023-08-09
0

对接chatGPT

chatGPT的api文档:https://platform.openai.com/docs/api-reference/making-requests

2023-07-25
0

SpringBoot官方笔记3核心

By default, INFO logging messages are shown, including some relevant startup details, such as the user that launched the application.

2023-07-20
0

搭建单体SpringBoot项目 集成Profile项目环境管理

如图,每种环境都对应一个 properties 文件,然后在application.properties中配置一下要使用的环境

2023-07-17
0

我的世界服务端server.properties

server.properties是Minecraft服务器的主配置文件,负责存储游戏设置,包括游戏模式、难度、生成世界类型、服务器IP地址、端口等等。具体可参考官方文档。该文件位于服务器的根目录下,与Minecraft服务器JAR文件处在同一级...

2023-07-11
0

kafka系列--消费

public String title;     public  ConsumerRecords<byte[], byte[]> records;     public KafkaConsumerSimple(String title, ConsumerRecords<byte[], byte[]> ...

2023-06-29
0

kafka系列--安装

安装jdk略,zookeeper略 创建消息持久化目录 /mnt/hadoop/kafka/kafkaLogs 下载kafka wget http://www-eu.apache.org/dist/kafka/0.10.2.1/kafka_2.11-0.10.2.1.tgz tar –zxvf kafka_...

2023-06-29
0

TS STRUCTURE - Discriminated Union Types (标签联合类型 或 可辨识联合类型)

Discriminated union type returns a new type that contains only the properties that are present in all interfaces.

2023-05-17
0

TS STRUCTURE - Interfaces

An interface is a declaration that is similar to a class but does not have a method implementation. You can use it to describe the properties and methods of obj...

2023-05-17
0

Java成神路 —— Properties集合

1.1 Properties作为Map集合的使用1. Properties介绍Properties 是一个Map体系的集合类Properties可以保存到流中或从流中加载属性列表中的每个键及其对应的值都是一个字符串2. Properties基本使用示例代码:1.2 Propert...

2023-05-07
0