Popular posts from this blog
The new Java version 16 includes a new feature: Records Java Records The new Java version 16 includes a new feature: Records https://openjdk.java.net/jeps/395 “Enhance the Java programming language with records , which are classes that act as transparent carriers for immutable data. Records can be thought of as nominal tuples.” Let’s try Java records with JPA and jOOQ. JPA Constructor Expression One way to use projection in JPA queries is using the constructor expression. The name constructor expression implies that the constructor is called with the fields from the projection. select new com.demo.dto.EmployeeDTO(e.name, e.department.name) from Employee e In the example we have a DTO called EmployeeDTO and the constructor takes two Strings as parameters. With Java before Java 16 we would create a class like this: public final class EmployeeDTO { private final String employeeName; private final String departmentName; pu...
Vaadin Tip: Lazy Loading and Item Identity
When using grids, trees or any other of multi-valued component with Vaadin you often want to display data from a database table and typically you have more than a few rows in the database. When using grids, trees or any other of multi-valued component with Vaadin you often want to display data from a database table and typically you have more than a few rows in the database. In this case loading thousands or even millions of records don’t make sense and would be a huge performance problem. For this use case Vaadin provides lazy loading using a CallbackDataProvider . To create a CallBackDataProvider you must implement a CountCallback and a FetchCallback . The CountCallback is used to provide the total number of records. And the FetchCallback is used for paging. Both methods receive a Query object that contains filter, sorting, offset and limit. In this example you can see how to use offset and limit. DataProvider<Employee, Void> dataProvider = new CallbackDataProvider...
Recording of Vaadin Dev Day Spring 2021
I had the pleasure to speak at the Vaadin Dev Day about “High-performance data access with Vaadin”. I had the pleasure to speak at the Vaadin Dev Day about “High-performance data access with Vaadin”. The recording is available on YouTube:
Five Ways to Tell It's Time to Break Up with Your Legacy System
When it comes to business operations, it’s easy to get comfortable in the status quo. When it comes to business operations, it’s easy to get comfortable in the status quo. Change seems daunting, especially in the context of legacy software. But often, just because a relationship is comfortable, doesn’t mean it’s what’s best for your enterprise in the long term. Here are a few reasons why it may be time to break up with your legacy system: 1. Security Issues Any enterprise worth its salt takes security seriously. Outdated software is one of the best ways hackers exploit their victims. There are thousands of industrial malware programs designed to target your systems in order to harvest you and your customers’ data, including sensitive financial information. Many malware programs can lurk for months (even years) harvesting information undetected. Here are several examples of how attackers focus on legacy gaps alone. 2. Reduced Performance In many cases, company productivity can only be a...
Making the Case for Digital Renovation
Are you working for an enterprise that utilizes outdated software? Are you working for an enterprise that utilizes outdated software? Old software, or legacy systems, pose threats to businesses looking to streamline processes, cut costs, and stay innovative. While users resist change and implementing new software is neither easy nor always feasible, opting for digital renovation can bridge legacy systems to modern demands. Legacy Systems Cost Your Business Too Much Money In making a case for software modernization, the most compelling reason tends to be the money saved by reducing excess labor costs and other inefficiencies incited by legacy systems. Less efficient to maintain Due to the grandiose size of legacy systems’ codebases, updating these systems can engender various problems, rendering the process both laborious and lengthy when done correctly. Additionally, the infrastructure of old software is more challenging to maintain and becomes increasingly challenging as the software ...
How to Create A Software Modernization Roadmap
Software modernization is key to staying ahead in your industry. Software modernization is key to staying ahead in your industry. It improves performance and prevents unexpected lapses in security and productivity. Application modernization roadmaps are a window into the future to manage expectations for budgets, outcomes, timelines, and teams to ensure you have the smoothest transition possible with the best possible results for your modernization project. We’ve developed a five-stage process for your software modernization journey: Prioritize, Engage, Execute, Modernize, and Optimize . We know all companies are different, so take our roadmap and modify it to suit your organization and process. 1. Prioritize To start, you need to gather your core team of stakeholders to prioritize your goals and vision for your company. Once you’ve established your goals, select a software modernization service provider, and sign a Memorandum of Understanding (MoU) to engage their services. If your mi...
The Art of Application Modernization: Making New Things Out of Old Stuff
Software integration and efficiency are critical elements of your business that impact your most important stakeholders. Software integration and efficiency are critical elements of your business that impact your most important stakeholders. Your software systems and their performance comprise a digital ecosystem designed to serve the needs of many individuals simultaneously. This always-on system surrounds your company’s daily tasks, the consumer experience, and the long-term growth potential of your organization. From the boardroom to your workforce and your customers, it is critical to have the most up-to-date integration of your systems so they run smoothly. Investing in secure, well-integrated technology benefits everyone in ways that are subtle and obvious. The frustration that builds up task by task over long load times can become a slow leak to the enthusiasm of your employees. A major software outage caused by long-overdue updates has the potential to result in weeks or months...
Computing Case Study: Tracing the Failures of COVID-19 Vaccine Portals
It’s January 2021 in the United States. With the blessing of President-Elect Biden, Moderna and Pfizer plan to roll out the COVID-19 vaccine at warp speed. It’s January 2021 in the United States. With the blessing of President-Elect Biden, Moderna and Pfizer plan to roll out the COVID-19 vaccine at warp speed. Within days high-risk individuals were given the green light to make appointments and receive their first dose of the innovative vaccine. What happens next, you probably remember well: confusion, upset, frustration, and crashing websites across the country From coast to coast, vaccine portals were failing. Even the country’s epicenters of eminent technological minds, California and Massachusetts, were not spared. Los Angeles experienced a heightened struggle as Governor Newsom confused the citizens as to who was eligible to receive vaccines. Subsequently, the LA County public health website experienced prolific crashing. What Went Wrong with the Vaccine Portals? The breakdown of ...
After Automation: What Comes Next?
Digital transformation isn’t a fix-it-and-forget-it operation. Once you’ve transformed your processes, here’s what comes next. So, you made the jump, and transformed your IT systems with the most efficient processes available. Your legacy systems are gone, or all grown up with new and powerful software, innovative technology has been implemented throughout your organization, and efficiency and productivity maximized across the board. From automation to AI, the digital transformation is complete, and your system is prepared for whatever the future holds. As you survey the results of your time, effort, and innovation, you might be wondering… Now what? Digital transformation isn’t a fix-it-and-forget-it operation. Once you’ve transformed your processes, here’s what comes next: Looking Behind As you bask in the glow of your newly-minted modernized IT systems and software, take a moment to remember the last time you did this. Maybe it was ten years ago, but all those legacy systems that you...
Blog Posts
Java Persistence Done Right
- Get link
- X
- Other Apps
When it comes to accessing relational databases with Java, people usually think of two options
When it comes to accessing relational databases with Java, people usually think of two options:
1. SQL (Structured Query Language)
2. ORM (Object Relational Mapping)
Because the usage of SQL with the Java API JDBC (Java Database Connectivity) is painful and error-prone the first choice is usually an ORM like JPA/Hibernate.
ORM
Let’s have a look at the definition of ORM on Wikipedia:
Object-relational mapping (ORM, O/RM, and O/R mapping tool) in computer science is a programming technique for converting data between incompatible type systems using object-oriented programming languages. This creates, in effect, a “virtual object database” that can be used from within the programming language.
The idea behind a ORM framework is to hide the database access from the user. Another goal is to introduce capability to the database access layer that is do not exits in a relational database like inheritance. But this abstraction is leaky and leads to the so called impedance mismatch:
The Impedance Mismatch
The object-relational impedance mismatch is a set of conceptual and technical difficulties that are often encountered when a relational database management system (RDBMS) is being served by an application program (or multiple application programs) written in an object-oriented programming language or style, particularly because objects or class definitions must be mapped to database tables defined by a relational schema. Source: Wikipedia
The problem with ORM is that the user by default does not have full control over the database access and this can cause several problems. The most common problem is poor performance caused by the fact that developers usually don’t deep dive into the details of a framework. This naive approach usually leads to too many SQL statements executed by the ORM framework.
The fact that it’s possible to define parent-child relationships in ORM raise the question when and how the children are loaded. By default this is done in a lazy way. So let’s assume that we have an customer order with many items and we want to fetch the customer orders the generated SQL statements will look like this:
select * from customer_order;
The above query returns all customer order (e.g. 1,2,3,4). If the program accesses the children the ORM framework will produce a query per customer order:
select * from item where customer_order_id = 1;
select * from item where customer_order_id = 2;
select * from item where customer_order_id = 3;
select * from item where customer_order_id = 4;
This problem is called n+1 select problem and happens in every application that uses ORM. The ORM usually provides techniques to overcome this problem but as initially said developers usually are not ORM experts.
What are the alternatives?
As you can see ORM may not be the silver bullet you’re looking for. But as initially mentioned using SQL can be very painful. Luckily there are two popular alternatives.
1. MyBatis (former iBatis)
2. jOOQ
MyBatis
MyBatis was first released in 2001 under the name iBatis and the idea behind this framework is to map SQL statements to Java objects. In contrast to ORM where the SQL statements are generated by the framework you have the full control over the SQL statements because you have to write it by your own.
The code examples shows how you write the SQL statement in an annotation (it also supports XML) and that the method returns a Java object and not a JDBC ResultSet:
public interface DepartmentMapper {
@Select("select id, name from department WHERE name = #{name}")
Department findByName(String name);
}
The downside of MyBatis is that there is a lot of mapping work to do. To overcome this disadvantage there is a generator that can help with this task.
But the biggest disadvantage of MyBatis is the lack of type safety. SQL statements are written in Strings and also the mapping are just strings and this may cause problems during runtime because the mapping and the SQL is not checked during compile time.
jOOQ
jOOQ is a framework that embraces SQL and makes SQL the primary language to speak to the database from Java in a typesafe and fluent way. jOOQ provides a domain specific language (DSL). All the artifacts you use with this DSL are generated from the database meta model.
The difference to MyBatis is that you don’t write SQL in plain text and therefore the compiler can check your SQL statements and you have full code completion in your IDE.
DepartmentDTO department = dsl
.select(DEPARTMENT.ID, DEPARTMENT.NAME)
.from(DEPARTMENT)
.where(DEPARTMENT.NAME.eq("IT"))
.fetchOneInto(DepartmentDTO.class);
As you can see in the above example you really write SQL! The types in capital letters are constants that are generated from the database meta model and provides the type-safety with the DSL.
Should I still use ORM?
As usual the answer is “it depends”. But because of the impedance mismatch and the fact you have to be an expert in ORM and SQL you really should think twice if it’s worth to invest in this technology.
With jOOQ you will get a great alternative plus the full control over the database access!
What’s Next?
In the next blog post I will introduce jOOQ as the best way to use SQL in Java applications.
Stay tuned!
- Get link
- X
- Other Apps