- Apache Camel Developer's Cookbook
- Scott Cranton Jakub Korab
- 177字
- 2021-07-19 18:46:31
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, Camel endpoint URIs, folder names, filenames, file extensions, pathnames, and dummy URLs are shown as follows: "In both cases ${spring-version}
is a property that you define in the properties
section of your POM that states which version of Spring you are using."
A block of code is set as follows:
from("direct:processXml") .choice() .when() .xpath("/order[@units > 100]") .to("direct:priorityXmlOrder") .otherwise() .to("direct:normalXmlOrder") .end();
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
from("direct:processXml")
.choice()
.when()
.xpath("/order[@units > 100]")
.to("direct:priorityXmlOrder")
.otherwise()
.to("direct:normalXmlOrder")
.end();
Any command-line input or output is written as follows:
# java -jar camel-jasypt-2.12.2.jar -c encrypt -p encryptionPassword -i myDatabasePassword
New terms and important words are shown in bold.
推薦閱讀
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- SQL Server 2012數據庫技術及應用(微課版·第5版)
- JavaScript 網頁編程從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- SQL語言從入門到精通
- C語言程序設計案例精粹
- Python算法從菜鳥到達人
- Haxe Game Development Essentials
- Spring Boot實戰
- Visual Basic程序設計習題與上機實踐
- Practical Microservices
- Practical Predictive Analytics
- Java EE 8 and Angular
- HTML5移動前端開發基礎與實戰(微課版)
- Python第三方庫開發應用實戰
- Python計算機視覺與深度學習實戰