Book Image

Building Applications with Spring 5 and Vue.js 2

By : James J. Ye
Book Image

Building Applications with Spring 5 and Vue.js 2

By: James J. Ye

Overview of this book

Building Applications with Spring 5 and Vue.js 2, with its practical approach, helps you become a full-stack web developer. As well as knowing how to write frontend and backend code, a developer has to tackle all problems encountered in the application development life cycle – starting from the simple idea of an application, to the UI and technical designs, and all the way to implementation, testing, production deployment, and monitoring. With the help of this book, you'll get to grips with Spring 5 and Vue.js 2 as you learn how to develop a web application. From the initial structuring to full deployment, you’ll be guided at every step of developing a web application from scratch with Vue.js 2 and Spring 5. You’ll learn how to create different components of your application as you progress through each chapter, followed by exploring different tools in these frameworks to expedite your development cycle. By the end of this book, you’ll have gained a complete understanding of the key design patterns and best practices that underpin professional full-stack web development.
Table of Contents (23 chapters)
Title Page
Copyright and Credits
Dedication
About Packt
Contributors
Preface
Index

Conceptual data modeling with ER diagrams


Now, let's start the conceptual data modeling for our TaskAgile application. First of all, let's go over the notation that we will use to create ER diagrams.

Crow's foot notation

The notation we use in this book is crow's foot notation. We use rectangles to represent entities. For example, the following represents User entities and Team Entities:

Figure 5.2: Entities

And, we use a line to connect rectangles to represent a relationship. For example, Figure 5.3 represents the relationship between User entities and Team entities:

Figure 5.3: The relationship between User and Team

In this relationship, the symbol with double perpendicular lines on the left side means one and only one, and the symbol on the right side that is similar to a crow's foot means zero or many. It reads like this from left to right—Each user may create zero or many teams. And, it is like this when reading from right to left—Each team must be created by one and only one user.

Here are...