- Java Hibernate Cookbook
- Yogesh Prajapati Vishal Ranapariya
- 126字
- 2021-07-16 19:59:45
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: "dialect
helps hibernate to generate database specific SQL statements."
A block of code is set as follows:
<hibernate-mapping> <class="Employee" table="employee"> <id name="id" type="long" column="id"> <generator class="increment" /> </id> <property column="firstName" name="firstName" /> <property column="salary" name="salary" /> </class> </hibernate-mapping>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
@AuditTable(value="emp_history")
public class Employee {
// other fields and setters/getters
}
推薦閱讀
- Learning NServiceBus(Second Edition)
- INSTANT FreeMarker Starter
- 實(shí)戰(zhàn)Java程序設(shè)計(jì)
- Processing互動(dòng)編程藝術(shù)
- Apache Karaf Cookbook
- SQL基礎(chǔ)教程(視頻教學(xué)版)
- PHP+MySQL網(wǎng)站開發(fā)項(xiàng)目式教程
- Android系統(tǒng)原理及開發(fā)要點(diǎn)詳解
- Building Wireless Sensor Networks Using Arduino
- C++反匯編與逆向分析技術(shù)揭秘(第2版)
- 區(qū)塊鏈技術(shù)進(jìn)階與實(shí)戰(zhàn)(第2版)
- Scratch·愛編程的藝術(shù)家
- Java圖像處理:基于OpenCV與JVM
- Java Hibernate Cookbook
- MySQL核心技術(shù)與最佳實(shí)踐