June 2018
Intermediate to advanced
408 pages
11h 23m
English
All application classes are simple POJO classes; Spring is not invasive. It does not require you to extend framework classes or implement framework interfaces for most use cases. Spring applications do not require a Jakarta EE application server, but they can be deployed on one.
Before the Spring Framework, typical J2EE applications contained a lot of plumbing code. For example:
Let's look at the following simple example of executing a query using PreparedStatement:
PreparedStatement st = null;try { st = conn.prepareStatement(INSERT_ACCOUNT_QUERY); st.setString(1, bean.getAccountName()); ...Read now
Unlock full access