

Usikker på hvor
starte?
Track
Certifikat!
Java Web
4.5+
★★★★★
★★★★★
30 anmeld.
Advanced
Dive into the world of Java web development with this comprehensive track. From mastering relational databases and SQL to building robust backend applications with Spring Boot, you'll develop the essential skills needed to create dynamic web applications. Vis nu mere
SQL
java
HTML/CSS
Redis
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity TeamsWhat you will learn
- Design and optimize relational databases to ensure data integrity and efficiency
- Write and manage SQL queries to retrieve, update, and manipulate data effectively
- Use Hibernate to simplify database interactions and manage data persistence in Java applications
- Build scalable backend applications with Spring Boot
- Improve application performance with Redis caching
- 216 chapters
- 25 hours
- 282 tasks
Trusted by employees of leading companies
Learning track content
Module 1 / Relational Database and Normalization
This section dives into the world of relational and non-relational databases, teaching you how to visually represent database structures.
We'll dive deep into relational databases, giving you a thorough understanding of essential concepts. This includes topics like foreign keys, various ON DELETE options, and the different types of relationships.
Ready to build a database? This section will hone your skills, emphasizing the importance of a well-structured database for peak performance. Here, you'll grasp the fundamental principles of crafting user-friendly databases.
Module 2 / Introduction to SQL
This section will introduce you to coding in SQL. It will start with some basic information related to SQL and SQL Databases in general, eventually moving towards writing basic SQL queries. The section also includes some fun exercises where you will get to practice the SQL syntax.
- What is SQL?Forhåndsvisning
- Setting Up SQL and SSMSForhåndsvisning
- Getting Familiar with SSMSForhåndsvisning
- Structure of an SQL Database SystemForhåndsvisning
- The SELECT StatementForhåndsvisning
- Challenge: First Day as a LibrarianForhåndsvisning
- Challenge: Find all Book TitlesForhåndsvisning
- Challenge: Find Book Titles and AuthorsForhåndsvisning
- The DISTINCT KeywordForhåndsvisning
- Challenge: Find all GenresForhåndsvisning
We will get an introduction to filtering data from our selections. This will give us control over what kind of data we fetch from the database. This section will cover the syntax for filtering data and various operators which can help us write robust conditions for conditional selection of data.
- The WHERE ClauseForhåndsvisning
- Challenge: Help a Reader Find Their Favorite GenreForhåndsvisning
- Challenge: Fetching Older BooksForhåndsvisning
- Conditional Expressions: Comparison OperatorsForhåndsvisning
- Challenge: Avoid the Damaged BooksForhåndsvisning
- Challenge: Highlight New ArrivalsForhåndsvisning
- Challenge: Budget-Friendly BooksForhåndsvisning
- Conditional Expressions: The AND OperatorForhåndsvisning
- Challenge: Find Specific Books for a ReaderForhåndsvisning
- Challenge: Defining RangesForhåndsvisning
- Challenge: Multiple ConditionsForhåndsvisning
- Conditional Expressions: The OR OperatorForhåndsvisning
- Challenge: Matching Multiple OptionsForhåndsvisning
- Challenge: Excluding A RangeForhåndsvisning
- Conditional Expressions: The NOT OperatorForhåndsvisning
- Challenge: Negating a RangeForhåndsvisning
This section focuses on concepts related to sorting the tables based on the column values. Sorting can be useful in extracting the minimum or maximum values from a column or for making it easier to find relevant information quickly. We will also look at a keyword which can help us limit the number of rows that are fetched by our SELECT statements, making our queries more concise.
- Basic SortingForhåndsvisning
- Challenge: Sorting the Library CatalogueForhåndsvisning
- Sorting by Multiple ColumnsForhåndsvisning
- Challenge: Further Sorting the CatalogueForhåndsvisning
- Sorting after Filtering DataForhåndsvisning
- Challenge: Find the Cheapest BooksForhåndsvisning
- Challenge: Help a Customer Find a BookForhåndsvisning
- The LIMIT KeywordForhåndsvisning
- Challenge: Select Books for the Collector's SectionForhåndsvisning
- Challenge: Affordable BooksForhåndsvisning
You will learn about useful queries and keywords that can help us in populating a database with some data. This will include queries for creating tables, and for inserting rows into those tables. We will also cover two additional keywords that can help us in making our tables more intractable and robust.
- Creating a TableForhåndsvisning
- Challenge: Creating a new Books TableForhåndsvisning
- Inserting Rows into a TableForhåndsvisning
- Challenge: Inserting DataForhåndsvisning
- Challenge: Inserting More DataForhåndsvisning
- Inserting Multiple RowsForhåndsvisning
- Challenge: Inserting Bulk DataForhåndsvisning
- Primary KeysForhåndsvisning
- The SERIAL KeywordForhåndsvisning
- Challenge: Changing the Books StructureForhåndsvisning
- Specifying Default ValuesForhåndsvisning
- Challenge: Further Improving the Books TableForhåndsvisning
We will look at how to modify or delete data in an SQL database. This will include queries for updating or deleting rows in a table and making a copy of a table or deleting it.
- Updating Rows in a TableForhåndsvisning
- Challenge: Correct Book's DataForhåndsvisning
- Challenge: Updating Page CountsForhåndsvisning
- Challenge: Mark Archived Books As UnavailableForhåndsvisning
- Deleting RowsForhåndsvisning
- Challenge: Deleting Outdated RecordsForhåndsvisning
- Duplicating TablesForhåndsvisning
- Challenge: Create a Table BackupForhåndsvisning
- Challenge: Generate a Summarized Books TableForhåndsvisning
- Deleting TablesForhåndsvisning
Module 3 / Intermediate SQL
In this section, you will learn how to group and manage data effectively. We will introduce the GROUP BY operator for grouping data. Additionally, you will learn how to filter grouped data using the HAVING operator.
- GROUP BY ClauseForhåndsvisning
- Order of StatementsForhåndsvisning
- Challenge: Total Ride Time for Each Subway LineForhåndsvisning
- Average Student's Grade ChallengeForhåndsvisning
- Searching for the Top Math Students ChallengeForhåndsvisning
- HAVING ClauseForhåndsvisning
- Several Aggregate Functions in the QueryForhåndsvisning
- More Complex FilteringForhåndsvisning
You will learn about nested subqueries, how to create them, and how to use them effectively.
Here, you will learn how to combine multiple tables, allowing you to work with a unified table and simplify query creation.
- JOIN 2 TablesForhåndsvisning
- Challenge: Get Category By Product PriceForhåndsvisning
- Challenge: Get Minimum Price By CategoryForhåndsvisning
- Challenge: Get Product Amount By CategoryForhåndsvisning
- LEFT, RIGHT and INNER JOINsForhåndsvisning
- Challenge: Table JoinForhåndsvisning
- Challenge: FULL JOIN UsageForhåndsvisning
Learn the fundamentals of Data Definition Language (DDL) and Data Manipulation Language (DML) in SQL, including how to create, modify, and delete database objects, as well as how to insert, update, and delete data within tables.
Module 4 / Java Data Manipulation with Hibernate
Why do we need a database? How does the interaction between a database and code work? What tools are used for different types of databases? You will learn all about this in this section!
This section will tell you how to set up and use Hibernate. You will learn how this framework works, what ORM is, and how to work with databases efficiently. You will also learn to write basic operations with a connected database, demonstrating your skills in practice!
- Hibernate. ORMForhåndsvisning
- Hibernate Config and EntitiesForhåndsvisning
- Challenge: Entity CreationForhåndsvisning
- Transactions and SessionForhåndsvisning
- Implementing DAO Pattern for our ProgramForhåndsvisning
- Challenge: Implementing DAOForhåndsvisning
- `query()` and `nativeQuery()`Forhåndsvisning
- Challenge: QueryForhåndsvisning
- Entity Relations and Cascade TypesForhåndsvisning
- Implementing the `Role` EntityForhåndsvisning
- Challenge: Role Layers ImplementationForhåndsvisning
- Section 2 SummaryForhåndsvisning
In this section, we will complete work on the project's foundation for employee management in the company. We will add the remaining operations and one more entity.
Module 5 / Ultimate HTML
Explore the inner workings of the web. Learn how data travels across networks, discover the role of protocols, and unravel the mysteries of IP addresses and domain names. Gain a high-level understanding of how web browsers and servers communicate to deliver web content.
Discover the power of tags to structure content, from headings and paragraphs to lists and tables. Learn how to enhance the elements with attributes.
- Understanding HTML TagsForhåndsvisning
- Working with HTML AttributesForhåndsvisning
- Understanding Paired and Single Tags in HTMLForhåndsvisning
- Text Markup and Formatting in HTMLForhåndsvisning
- Challenge: Create Your First Web Page ParagraphForhåndsvisning
- Challenge: Build a Personal Introduction Web PageForhåndsvisning
- Challenge: Design a Movie Showcase Web PageForhåndsvisning
- Using Links and Buttons in HTMLForhåndsvisning
- Challenge: Create Links to Popular WebsitesForhåndsvisning
- Validating Your HTML Code for Best PracticesForhåndsvisning
The core of HTML document structure. Learn the components of an HTML document, including the doctype declaration, head, and body. Understand the purpose of each element and how they contribute to the overall structure of a webpage.
- The Secrets Behind Well-Structured Web PagesForhåndsvisning
- Understanding HTML Document StructureForhåndsvisning
- The Role of the Document HeadForhåndsvisning
- Managing Document Flow and LayoutForhåndsvisning
- Challenge: Structure an HTML Document CorrectlyForhåndsvisning
- Using Developer Tools for HTML Inspection and DebuggingForhåndsvisning
Make a web page more appealing with the help of media such as images, audio, and video. Work with structured tabular data in the form of tables.
- Adding Images in HTMLForhåndsvisning
- Challenge: Work with ImagesForhåndsvisning
- Working with Clickable Images, Captions, and OptimizationForhåndsvisning
- Understanding Vector and Raster GraphicsForhåndsvisning
- Embedding Audio and Video for Rich Media ContentForhåndsvisning
- Challenge: Embed Audio and Video in HTMLForhåndsvisning
- Creating and Structuring Tables in HTMLForhåndsvisning
- Challenge: Design a Functional HTML TableForhåndsvisning
Explore the versatility of HTML forms. Learn to design intuitive and user-friendly forms by leveraging key concepts and techniques. Discover how forms enable user interaction and data submission on websites.
- Introduction to HTML FormsForhåndsvisning
- Fundamentals of Form Creation in HTMLForhåndsvisning
- Using Labels for Better Form AccessibilityForhåndsvisning
- Enhancing Forms with Input AttributesForhåndsvisning
- Exploring Different Input Types in HTMLForhåndsvisning
- Challenge: Create Form with Inputs and LabelsForhåndsvisning
- Working with the Textarea Element for Multi-line InputForhåndsvisning
- Using the Select Element for Dropdown MenusForhåndsvisning
- Using the Datalist Element for Predefined Input SuggestionsForhåndsvisning
- Grouping Form Elements for Better StructureForhåndsvisning
Module 6 / Spring Boot Backend
You’ll learn the basics of backend development, including how the HTTP protocol works and the differences between HTTP and HTTPS. You’ll also study HTTP status codes and data formats like JSON and XML for transferring information between client and server.
In this section, we will dive into the essential concepts of backend development using Spring. We will cover various topics, including an introduction to Spring, the principles of Inversion of Control (IoC) and Dependency Injection (DI), the structure of a Spring Boot project, Spring MVC, three-tier architecture, and task management. Each chapter will build upon the previous one to provide a comprehensive understanding of backend development in a Spring environment.
This section covers the fundamentals and practical implementation of RESTful APIs, starting with the theoretical understanding of REST and its core principles. It also includes building your own API, working with DTOs, handling exceptions, integrating Swagger for documentation, and testing the API.
This section covers the basics of working with relational databases, including connection setup, migrations, and interaction with Object-Relational Mappers (ORM) using JPA and Hibernate. It discusses how to integrate databases with Spring Boot applications and explores key aspects of transaction management to ensure data integrity. The goal of this section is to enhance your database skills and promote their effective use in application development.
This section focuses on testing backend applications and covers essential topics such as the fundamentals of testing, unit testing using JUnit, and integration testing. It also explores the use of mock objects with the Mockito library to create effective and isolated tests. This section will help developers understand the importance of testing and learn how to utilize tools to enhance the quality and reliability of their applications.
Module 7 / Introduction to Redis
This section provides an introduction to Redis, highlighting its core features and common use cases. You’ll learn how to install Redis on different platforms, including Windows and macOS, and get familiar with the basics of connecting to and starting the Redis server.
Here, we explore the essential Redis commands for managing and manipulating data effectively. You'll learn how to set, retrieve, increment, and delete data using commands like SET, GET, EXISTS, INCR, DECR, and tackle practical tasks to apply these concepts in real-world scenarios.
Here, you will learn about key Redis data types, including Lists, Sets, Sorted Sets, and Hashes. You will explore their functionality and practical applications through focused exercises designed to reinforce your understanding of each data type.
You'll explore advanced features of Redis, including managing key lifecycles, executing transactions, and leveraging the Pub/Sub messaging system. Additionally, you'll learn essential security practices to safeguard your Redis environment against unauthorized access.
This section introduces the fundamentals of caching and demonstrates how to configure Redis as a cache in a Spring application. It covers key caching annotations and practical examples of caching queries in web applications, concluding with a summary of the main concepts.
Requirements
- A computer with a browser - all browsers are supported.
- Your enthusiasm to enhance your tech skills.
- Everything else needed to start learning and practicing is already included in this course.
Over 200,000 5-star ratings and counting
Ruslan Kravchuk
Det vigtigste er at lære og ikke give op
Materialet er godt, der er meget at lære for at blive bedre, og det vigtigste er at lære det, du ønsker....
Matteo Comune
Takket være dem lærer jeg meget…
Takket være dem lærer jeg meget hurtigere, fordi de hjælper dig med at forstå alt fra bunden. Det er den bedste hjemmeside for folk uden IT-erfaring...
Yuliana Cadavid
fantastisk kursus for begyndere
fantastisk kursus for begyndere, som tester din viden i hver lektion...
Elpunzon
Jeg nyder min Codefinity-oplevelse…
Jeg nyder at lære Python med Codefinity. Den selvstyrede læringsmetode er fantastisk, fordi jeg kan tilpasse den min tidsplan...
Alexandru Alexandru
Det er rart at lære fra Codefinity
Det er rart at lære fra Codefinity. Det er nemt og har gode eksempler på, hvad jeg har lært her...
jacob Templet
Easy to follow along with and provides…
Let at følge med og giver daglige udfordringer. Udfordringen motiverer mig til at lære dag efter dag...
Elan
Codefinity er et omfattende læringsværktøj…
Codefinity er et omfattende læringsværktøj, der hjælper dig med at udvikle dine færdigheder som softwareingeniør eller datavidenskabsmand. Øvelserne er sjove og en god måde at finpudse dine evner på...
Thibault
Første gang jeg lærer at kode
Første gang jeg lærer at kode og lykkes med det hos Codefinity - tak...
Adrien Morel
Godt designet til totale begyndere
Godt designet til totale begyndere, med trinvis progression, der giver mig selvtillid....
_Gracy
det er simpelthen fuldstændig velforklaret
det er simpelthen fuldstændig velforklaret! Indtil videre har jeg ikke oplevet nogen problemer, fordi alt er så godt organiseret...
Ruslan Kravchuk
Det vigtigste er at lære og ikke give op
Materialet er godt, der er meget at lære for at blive bedre, og det vigtigste er at lære det, du ønsker....
Matteo Comune
Takket være dem lærer jeg meget…
Takket være dem lærer jeg meget hurtigere, fordi de hjælper dig med at forstå alt fra bunden. Det er den bedste hjemmeside for folk uden IT-erfaring...
Yuliana Cadavid
fantastisk kursus for begyndere
fantastisk kursus for begyndere, som tester din viden i hver lektion...
Elpunzon
Jeg nyder min Codefinity-oplevelse…
Jeg nyder at lære Python med Codefinity. Den selvstyrede læringsmetode er fantastisk, fordi jeg kan tilpasse den min tidsplan...
Alexandru Alexandru
Det er rart at lære fra Codefinity
Det er rart at lære fra Codefinity. Det er nemt og har gode eksempler på, hvad jeg har lært her...
jacob Templet
Easy to follow along with and provides…
Let at følge med og giver daglige udfordringer. Udfordringen motiverer mig til at lære dag efter dag...
Elan
Codefinity er et omfattende læringsværktøj…
Codefinity er et omfattende læringsværktøj, der hjælper dig med at udvikle dine færdigheder som softwareingeniør eller datavidenskabsmand. Øvelserne er sjove og en god måde at finpudse dine evner på...
Thibault
Første gang jeg lærer at kode
Første gang jeg lærer at kode og lykkes med det hos Codefinity - tak...
Adrien Morel
Godt designet til totale begyndere
Godt designet til totale begyndere, med trinvis progression, der giver mig selvtillid....
_Gracy
det er simpelthen fuldstændig velforklaret
det er simpelthen fuldstændig velforklaret! Indtil videre har jeg ikke oplevet nogen problemer, fordi alt er så godt organiseret...
Data Engineer
Certifikat for fuldførelse
Fremvis dine nyligt opnåede færdigheder. Du har fortjent det
Discover more
Learning tracks
Kun for Ultimate
1 Kursus
1 Projekt
0 Task
Kun for Ultimate
7 Kurser
345 Opgaver
Kun for Ultimate
5 Kurser
119 Opgaver
Kun for Ultimate
5 Kurser
146 Opgaver
Kun for Ultimate
4 Kurser
115 Opgaver
Kun for Ultimate
6 Kurser
101 Opgaver
Kun for Ultimate
6 Kurser
168 Opgaver
Kun for Ultimate
5 Kurser
135 Opgaver
Kun for Ultimate
2 Kurser
1 Projekt
57 Opgaver
Kun for Ultimate
7 Kurser
376 Opgaver
Kun for Ultimate
4 Kurser
143 Opgaver
Kun for Ultimate
5 Kurser
180 Opgaver
Kun for Ultimate
5 Kurser
165 Opgaver
Kun for Ultimate
6 Kurser
308 Opgaver
Kun for Ultimate
6 Kurser
252 Opgaver
Kun for Ultimate
8 Kurser
2 Projekter
176 Opgaver
Kun for Ultimate
2 Kurser
80 Opgaver
Kun for Ultimate
7 Kurser
293 Opgaver
Kun for Ultimate
1 Projekt
0 Task
Kun for Ultimate
2 Kurser
21 Opgaver
Kun for Ultimate
5 Kurser
111 Opgaver
Kun for Ultimate
2 Kurser
0 Task
Kun for Ultimate
3 Kurser
39 Opgaver
Kun for Ultimate
13 Kurser
555 Opgaver
Kun for Ultimate
13 Kurser
555 Opgaver
Kun for Ultimate
1 Kursus
0 Task
Kun for Ultimate
0 Task
Kun for Ultimate
5 Kurser
139 Opgaver
Kun for Ultimate
3 Kurser
71 Opgaver
Kun for Ultimate
5 Kurser
239 Opgaver
Kun for Ultimate
4 Kurser
125 Opgaver
Kun for Ultimate
2 Kurser
33 Opgaver
Kun for Ultimate
3 Kurser
119 Opgaver
Kun for Ultimate
1 Kursus
15 Opgaver
Kun for Ultimate
3 Kurser
75 Opgaver
Kun for Ultimate
3 Kurser
31 Opgaver
Kun for Ultimate
2 Kurser
151 Opgaver
Kun for Ultimate
3 Kurser
56 Opgaver
Kun for Ultimate
2 Kurser
1 Projekt
38 Opgaver
Kun for Ultimate
3 Kurser
36 Opgaver
Kun for Ultimate
2 Kurser
1 Projekt
38 Opgaver
Kun for Ultimate
5 Kurser
134 Opgaver
Learning tracks
spor
TEST TRACK 12
Begynder
4.0
(7146)
spor
Full Stack Web Development
Begynder
4.5
(58)
spor
Become a React Developer
Mellemniveau
4.9
(7)
spor
Mastering Data Visualization
Mellemniveau
4.6
(7)
spor
SQL from Zero to Hero
Begynder
4.7
(93)
spor
С++ Essentials
Begynder
4.4
(17)
spor
Python from Zero to Hero
Begynder
4.7
(284)
spor
Supervised Machine Learning
Mellemniveau
4.9
(7)
spor
Python Beyond Intermediate
Begynder
5.0
(1)
spor
Java Essentials
Begynder
4.3
(9)
spor
Game Development with Unity
Begynder
4.6
(7)
spor
Become a Django Developer
Avanceret
4.4
(27)
spor
Flask for Dummies
Mellemniveau
4.5
(31)
spor
Frontend Development Foundations
Begynder
4.6
(52)
spor
Web Developer from Zero to Hero
Begynder
4.6
(56)
spor
Preparation for Data Science
Mellemniveau
4.5
(11)
spor
Deep Learning Odyssey
Avanceret
5.0
(3)
spor
Web Development with C#
Begynder
4.8
(98)
spor
TEST E2E TRACK BEGINNER
Begynder
spor
Test Track
Begginer
4.7
(3)
spor
Skilled Python BackEnd Developer
Avanceret
4.7
(261)
spor
Test Recalculate
Begynder
spor
Excel Essentials
Begynder
4.5
(33)
spor
Full-Stack .NET Developer Journey
Mellemniveau
4.8
(129)
spor
Full-Stack .NET Developer Journey
Mellemniveau
4.8
(129)
spor
Test track with rating
Avanceret
4.0
(4)
spor
TEST TEST TRACK
Begynder
spor
Data Analyst Foundation
Begynder
4.7
(111)
spor
C++ Mastery
Avanceret
spor
Become a QA Engineer
Begynder
4.5
(43)
spor
Video Production with Adobe
Begynder
spor
Digital Marketing Essentials
Begynder
spor
UI/UX Design Tools
Begynder
spor
Test image upload track
Begynder
spor
Essential Office Skills
Begynder
4.6
(24)
spor
GitHub from Zero to Hero
Begynder
spor
No-Code Website Development
Begynder
spor
C Programming & Low-Level Development
Begynder
spor
testes
Begynder
4.7
(3)
spor
Test translation track
Mellemniveau
spor
Test CMS Track
Begynder
4.7
(3)
spor
Python for Data Analysis
Mellemniveau
4.6
(9)
Become a Development expert
Interactive exercises
Learning videos
AI-assistant on all courses
Workspaces for designing your own projects
Ready to get started?
ProBest intro offer | UltimateA complete experience to kickstart your career | |
---|---|---|
85+ Top-Rated courses | ||
Completion certificates | ||
AI-Assistant in all courses | ||
20+ hands-on Real-world projects | ||
Personalized study tracks | ||
Unlimited workspaces | ||
Boost your Tech Skills!
with up to 55% off
What you'll get with our subscription:
Access to 85+ top-rated courses
AI-driven Learning
Workspaces for practicing your skills
Personalized study tracks
Certificates of completion
Training 2 or more people?
Get your team access to Codefinity courses anytime, anywhere.
Try Codefinity Teams