- Spring 5.0 Microservices(Second Edition)
- Rajesh R V
- 211字
- 2021-07-02 19:44:46
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "RestTemplate is a utility class that abstracts the lower-level details of the HTTP client."
A block of code is set as follows:
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
@Component
class Receiver {
@RabbitListener(queues = "TestQ")
public void processMessage(String content) {
System.out.println(content);
}
}
Any command-line input or output is written as follows:
$java -jar target/bootrest-0.0.1-SNAPSHOT.jar
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "If the services are being build up fresh using the Spring Starter project, then select Config Client, Actuator, Web as well as Eureka Discovery client."
- GAE編程指南
- C程序設計簡明教程(第二版)
- Vue.js 3.x從入門到精通(視頻教學版)
- Functional Programming in JavaScript
- 機械工程師Python編程:入門、實戰與進階
- Backbone.js Blueprints
- 實戰Java高并發程序設計(第3版)
- 軟件項目管理實用教程
- Microsoft Azure Storage Essentials
- LabVIEW虛擬儀器程序設計從入門到精通(第二版)
- Zabbix Performance Tuning
- Nagios Core Administration Cookbook(Second Edition)
- 深入理解BootLoader
- App Inventor少兒趣味編程動手做
- iOS開發項目化入門教程