- 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."
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- 深入淺出Java虛擬機:JVM原理與實戰
- Java開發入行真功夫
- Visual Basic程序設計實驗指導(第二版)
- D3.js By Example
- Extending Unity with Editor Scripting
- 分布式數據庫原理、架構與實踐
- Mastering Elixir
- 算法設計與分析:基于C++編程語言的描述
- Maven for Eclipse
- After Effects CC案例設計與經典插件(視頻教學版)
- DevOps 精要:業務視角
- 算法超簡單:趣味游戲帶你輕松入門與實踐
- 大象:Thinking in UML(第二版)
- Scala實用指南