June 2018
Intermediate to advanced
408 pages
11h 23m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "To avoid LazyInitializationException, one of the solutions is an open session in view. "
A block of code is set as follows:
PreparedStatement st = null;try { st = conn.prepareStatement(INSERT_ACCOUNT_QUERY); st.setString(1, bean.getAccountName()); st.setInt(2, bean.getAccountNumber()); st.execute();}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
@Configuration@EnableTransactionManagement@PropertySource({ "classpath:persistence-hibernate.properties" ...Read now
Unlock full access