编程笔记

  • Spring Kafka - Spring Boot Example

    Spring Boot auto-configuration attempts to automatically configure your Spring application based on the JAR dependencies that have been added. In other words, if the spring-kafka-1.2.2.RELEASE.jar is…

    编程笔记 2022年7月4日
  • Spring Kafka - JSON Serializer Deserializer Example

    JSON (JavaScript Object Notation) is a lightweight data-interchange format that uses human-readable text to transmit data objects. It is built on two structures: a collection of name/value pairs and …

    编程笔记 2022年7月4日
  • Spring Kafka - Apache Avro Serializer Deserializer Example

    Apache Avro is a data serialization system. It uses JSON for defining data types/protocols and serializes data in a compact binary format. In the following tutorial, we will configure, build and run …

    编程笔记 2022年7月4日
  • Apache CXF - Spring Boot SOAP Web Service Client Server Example

    Apache CXF is an open source services framework that helps build and develop services using frontend programming APIs, like JAX-WS. In this tutorial, we will take a look at how we can integrate CXF w…

    编程笔记 2022年7月4日
  • Spring WS Example

    I’m going to show you EXACTLY how to create a Spring WS Hello World SOAP web service that uses Spring Boot and Maven. (Step-by-step) So if you’re a Spring WS beginner, you’ll love this guide. Let’s d…

    编程笔记 2022年7月4日
  • Spring Kafka Embedded Unit Test Example

    This guide will teach you everything you need to know about Spring Kafka Test. How to test a consumer. And how to test a producer. Using an embedded Kafka broker. Let’s get started… If you want to le…

    编程笔记 2022年7月4日
  • Spring Kafka Consumer Producer Example

    In this post, you’re going to learn how to create a Spring Kafka Hello World example that uses Spring Boot and Maven. (Step-by-step) So if you’re a Spring Kafka beginner, you’ll love this guide. Let’…

    编程笔记 2022年7月4日
  • Apache Kafka - Download and Install on Windows

    Apache Kafka is an open-source message broker project developed by the Apache Software Foundation written in Scala. The project aims to provide a high-throughput, low-latency platform capable of hand…

    编程笔记 2022年7月4日
  • 3 接口的UML图

    顶部一层是名字层; 第二层是常量层; 第三层是方法层; TRANSLATE with x English Arabic Hebrew Polish Bulgarian Hindi Portuguese Catalan Hmong Daw Romanian Chinese Simplified Hungarian Russian Chinese T…

    编程笔记 2022年7月4日
  • instanceof关键字进行类型判断

    如何才能知道一个父类引用的对象,本来是什么子类?格式:对象 instanceof类名称这将会得到一个boolean值结果,也就是判断前面的对象能不能当做后面类型的实例  

    编程笔记 2022年7月4日