- 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
}
推薦閱讀
- JavaScript 從入門到項目實踐(超值版)
- C和C++安全編碼(原書第2版)
- R語言游戲數據分析與挖掘
- 深入淺出DPDK
- Android Native Development Kit Cookbook
- Keras深度學習實戰
- Python深度學習:模型、方法與實現
- iPhone應用開發從入門到精通
- Python商務數據分析(微課版)
- 零基礎輕松學C++:青少年趣味編程(全彩版)
- R的極客理想:量化投資篇
- Learning Kotlin by building Android Applications
- Extending Docker
- 產品架構評估原理與方法
- Design Patterns and Best Practices in Java