- 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."
- Advanced Machine Learning with Python
- Mastering AWS Lambda
- Learn Type:Driven Development
- Mastering OpenCV 4
- JavaScript前端開發與實例教程(微課視頻版)
- 微信小程序入門指南
- Creating Mobile Apps with jQuery Mobile(Second Edition)
- Hands-On Full Stack Development with Spring Boot 2.0 and React
- Simulation for Data Science with R
- Unity 2017 Game AI Programming(Third Edition)
- Node.js從入門到精通
- Java核心編程
- JBoss AS 7 Development
- Hands-On ROS for Robotics Programming
- PhantomJS Cookbook