- 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
}
推薦閱讀
- Modular Programming with Python
- AIRAndroid應(yīng)用開發(fā)實戰(zhàn)
- C語言程序設(shè)計
- Wireshark Network Security
- Securing WebLogic Server 12c
- JavaScript動態(tài)網(wǎng)頁開發(fā)詳解
- HTML5+CSS3 Web前端開發(fā)技術(shù)(第2版)
- jQuery炫酷應(yīng)用實例集錦
- 微信小程序全棧開發(fā)技術(shù)與實戰(zhàn)(微課版)
- 用戶體驗可視化指南
- 智能搜索和推薦系統(tǒng):原理、算法與應(yīng)用
- C/C++數(shù)據(jù)結(jié)構(gòu)與算法速學(xué)速用大辭典
- 快速入門與進階:Creo 4·0全實例精講
- HTML+CSS+JavaScript編程入門指南(全2冊)
- Go語言入門經(jīng)典