- Building a RESTful Web Service with Spring
- Ludovic Dewailly
- 202字
- 2021-07-09 21:44:50
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: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
import org.springframework.web.bind.annotation.*; @RestController public class HelloWorldResource { @RequestMapping(method = RequestMethod.GET) public String helloWorld() { return "Hello, world!"; } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<dependency>
<groupId>com.packtpub.rest-with-spring</groupId>
<artifactId>rest-with-spring-billing</artifactId>
<version>1.0.0-SNAPSHOT</version>
<classifier>classes</classifier>
</dependency>
Any command-line input or output is written as follows:
mvn jetty:start
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: "For example, with IntelliJ IDEA, our sample web service project can be imported by selecting the menu options File | Open."
- Learning LibGDX Game Development(Second Edition)
- Spring Cloud Alibaba核心技術與實戰案例
- 微服務與事件驅動架構
- Java面向對象思想與程序設計
- Visual FoxPro 程序設計
- 64位匯編語言的編程藝術
- Python高級機器學習
- Visual C
- Learning Salesforce Einstein
- Hands-On Functional Programming with TypeScript
- C語言程序設計
- Tableau 10 Bootcamp
- ServiceNow:Building Powerful Workflows
- Spring 5 Design Patterns
- Mastering R for Quantitative Finance