

Osäker på var
börja?
Track
Certifikat
Java Web
4.5+
★★★★★
★★★★★
30 omdömen
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. Visa mer
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?Förhandsgranska
- Setting Up SQL and SSMSFörhandsgranska
- Getting Familiar with SSMSFörhandsgranska
- Structure of an SQL Database SystemFörhandsgranska
- The SELECT StatementFörhandsgranska
- Challenge: First Day as a LibrarianFörhandsgranska
- Challenge: Find all Book TitlesFörhandsgranska
- Challenge: Find Book Titles and AuthorsFörhandsgranska
- The DISTINCT KeywordFörhandsgranska
- Challenge: Find all GenresFörhandsgranska
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 ClauseFörhandsgranska
- Challenge: Help a Reader Find Their Favorite GenreFörhandsgranska
- Challenge: Fetching Older BooksFörhandsgranska
- Conditional Expressions: Comparison OperatorsFörhandsgranska
- Challenge: Avoid the Damaged BooksFörhandsgranska
- Challenge: Highlight New ArrivalsFörhandsgranska
- Challenge: Budget-Friendly BooksFörhandsgranska
- Conditional Expressions: The AND OperatorFörhandsgranska
- Challenge: Find Specific Books for a ReaderFörhandsgranska
- Challenge: Defining RangesFörhandsgranska
- Challenge: Multiple ConditionsFörhandsgranska
- Conditional Expressions: The OR OperatorFörhandsgranska
- Challenge: Matching Multiple OptionsFörhandsgranska
- Challenge: Excluding A RangeFörhandsgranska
- Conditional Expressions: The NOT OperatorFörhandsgranska
- Challenge: Negating a RangeFörhandsgranska
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 SortingFörhandsgranska
- Challenge: Sorting the Library CatalogueFörhandsgranska
- Sorting by Multiple ColumnsFörhandsgranska
- Challenge: Further Sorting the CatalogueFörhandsgranska
- Sorting after Filtering DataFörhandsgranska
- Challenge: Find the Cheapest BooksFörhandsgranska
- Challenge: Help a Customer Find a BookFörhandsgranska
- The LIMIT KeywordFörhandsgranska
- Challenge: Select Books for the Collector's SectionFörhandsgranska
- Challenge: Affordable BooksFörhandsgranska
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 TableFörhandsgranska
- Challenge: Creating a new Books TableFörhandsgranska
- Inserting Rows into a TableFörhandsgranska
- Challenge: Inserting DataFörhandsgranska
- Challenge: Inserting More DataFörhandsgranska
- Inserting Multiple RowsFörhandsgranska
- Challenge: Inserting Bulk DataFörhandsgranska
- Primary KeysFörhandsgranska
- The SERIAL KeywordFörhandsgranska
- Challenge: Changing the Books StructureFörhandsgranska
- Specifying Default ValuesFörhandsgranska
- Challenge: Further Improving the Books TableFörhandsgranska
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 TableFörhandsgranska
- Challenge: Correct Book's DataFörhandsgranska
- Challenge: Updating Page CountsFörhandsgranska
- Challenge: Mark Archived Books As UnavailableFörhandsgranska
- Deleting RowsFörhandsgranska
- Challenge: Deleting Outdated RecordsFörhandsgranska
- Duplicating TablesFörhandsgranska
- Challenge: Create a Table BackupFörhandsgranska
- Challenge: Generate a Summarized Books TableFörhandsgranska
- Deleting TablesFörhandsgranska
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 ClauseFörhandsgranska
- Order of StatementsFörhandsgranska
- Challenge: Total Ride Time for Each Subway LineFörhandsgranska
- Average Student's Grade ChallengeFörhandsgranska
- Searching for the Top Math Students ChallengeFörhandsgranska
- HAVING ClauseFörhandsgranska
- Several Aggregate Functions in the QueryFörhandsgranska
- More Complex FilteringFörhandsgranska
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 TablesFörhandsgranska
- Challenge: Get Category By Product PriceFörhandsgranska
- Challenge: Get Minimum Price By CategoryFörhandsgranska
- Challenge: Get Product Amount By CategoryFörhandsgranska
- LEFT, RIGHT and INNER JOINsFörhandsgranska
- Challenge: Table JoinFörhandsgranska
- Challenge: FULL JOIN UsageFörhandsgranska
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. ORMFörhandsgranska
- Hibernate Config and EntitiesFörhandsgranska
- Challenge: Entity CreationFörhandsgranska
- Transactions and SessionFörhandsgranska
- Implementing DAO Pattern for our ProgramFörhandsgranska
- Challenge: Implementing DAOFörhandsgranska
- `query()` and `nativeQuery()`Förhandsgranska
- Challenge: QueryFörhandsgranska
- Entity Relations and Cascade TypesFörhandsgranska
- Implementing the `Role` EntityFörhandsgranska
- Challenge: Role Layers ImplementationFörhandsgranska
- Section 2 SummaryFörhandsgranska
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 TagsFörhandsgranska
- Working with HTML AttributesFörhandsgranska
- Understanding Paired and Single Tags in HTMLFörhandsgranska
- Text Markup and Formatting in HTMLFörhandsgranska
- Challenge: Create Your First Web Page ParagraphFörhandsgranska
- Challenge: Build a Personal Introduction Web PageFörhandsgranska
- Challenge: Design a Movie Showcase Web PageFörhandsgranska
- Using Links and Buttons in HTMLFörhandsgranska
- Challenge: Create Links to Popular WebsitesFörhandsgranska
- Validating Your HTML Code for Best PracticesFörhandsgranska
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 PagesFörhandsgranska
- Understanding HTML Document StructureFörhandsgranska
- The Role of the Document HeadFörhandsgranska
- Managing Document Flow and LayoutFörhandsgranska
- Challenge: Structure an HTML Document CorrectlyFörhandsgranska
- Using Developer Tools for HTML Inspection and DebuggingFörhandsgranska
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 HTMLFörhandsgranska
- Challenge: Work with ImagesFörhandsgranska
- Working with Clickable Images, Captions, and OptimizationFörhandsgranska
- Understanding Vector and Raster GraphicsFörhandsgranska
- Embedding Audio and Video for Rich Media ContentFörhandsgranska
- Challenge: Embed Audio and Video in HTMLFörhandsgranska
- Creating and Structuring Tables in HTMLFörhandsgranska
- Challenge: Design a Functional HTML TableFörhandsgranska
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 FormsFörhandsgranska
- Fundamentals of Form Creation in HTMLFörhandsgranska
- Using Labels for Better Form AccessibilityFörhandsgranska
- Enhancing Forms with Input AttributesFörhandsgranska
- Exploring Different Input Types in HTMLFörhandsgranska
- Challenge: Create Form with Inputs and LabelsFörhandsgranska
- Working with the Textarea Element for Multi-line InputFörhandsgranska
- Using the Select Element for Dropdown MenusFörhandsgranska
- Using the Datalist Element for Predefined Input SuggestionsFörhandsgranska
- Grouping Form Elements for Better StructureFörhandsgranska
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 viktigaste är att lära sig och inte ge upp
Materialet är bra, det finns mycket att lära, allt för att bli bättre och det viktigaste är att lära sig det man vill....
Matteo Comune
Tack vare dem lär jag mig mycket…
Tack vare dem lär jag mig mycket snabbare eftersom de hjälper dig att förstå allt från grunden. Det är den bästa webbplatsen som hjälper personer utan IT-bakgrund...
Yuliana Cadavid
Utmärkt kurs för nybörjare
Utmärkt kurs för nybörjare, de testar dina kunskaper i varje lektion...
Elpunzon
Jag njuter av min Codefinity-upplevelse…
Jag njuter av min Codefinity-upplevelse med att lära mig Python. Det självstyrda lärsättet är fantastiskt eftersom jag kan anpassa det efter mitt schema...
Alexandru Alexandru
Det är trevligt att lära sig från Codefinity
Det är trevligt att lära sig från Codefinity. Det är enkelt och har bra exempel på vad jag lärt mig här...
jacob Templet
Easy to follow along with and provides…
Lätt att följa med i och ger utmaningar i min vardag. Utmaningen får mig att vilja lära mig dag efter dag...
Elan
Codefinity är ett heltäckande lärverktyg…
Codefinity är ett heltäckande lärverktyg som hjälper dig att utveckla dina färdigheter som mjukvaruingenjör eller datavetare. Övningarna är roliga och ett bra sätt att skärpa dina kunskaper...
Thibault
Första gången jag lär mig att koda
Första gången jag lär mig att koda och lyckas med Codefinity - tack...
Adrien Morel
Väl utformad för totala nybörjare
Väl utformad för totala nybörjare, med stegvis utveckling som får mig att känna mig trygg....
_Gracy
det är helt enkelt perfekt förklarat
det är helt enkelt perfekt förklarat! Hittills har jag inte upplevt några svårigheter eftersom allt är så välorganiserat...
Ruslan Kravchuk
Det viktigaste är att lära sig och inte ge upp
Materialet är bra, det finns mycket att lära, allt för att bli bättre och det viktigaste är att lära sig det man vill....
Matteo Comune
Tack vare dem lär jag mig mycket…
Tack vare dem lär jag mig mycket snabbare eftersom de hjälper dig att förstå allt från grunden. Det är den bästa webbplatsen som hjälper personer utan IT-bakgrund...
Yuliana Cadavid
Utmärkt kurs för nybörjare
Utmärkt kurs för nybörjare, de testar dina kunskaper i varje lektion...
Elpunzon
Jag njuter av min Codefinity-upplevelse…
Jag njuter av min Codefinity-upplevelse med att lära mig Python. Det självstyrda lärsättet är fantastiskt eftersom jag kan anpassa det efter mitt schema...
Alexandru Alexandru
Det är trevligt att lära sig från Codefinity
Det är trevligt att lära sig från Codefinity. Det är enkelt och har bra exempel på vad jag lärt mig här...
jacob Templet
Easy to follow along with and provides…
Lätt att följa med i och ger utmaningar i min vardag. Utmaningen får mig att vilja lära mig dag efter dag...
Elan
Codefinity är ett heltäckande lärverktyg…
Codefinity är ett heltäckande lärverktyg som hjälper dig att utveckla dina färdigheter som mjukvaruingenjör eller datavetare. Övningarna är roliga och ett bra sätt att skärpa dina kunskaper...
Thibault
Första gången jag lär mig att koda
Första gången jag lär mig att koda och lyckas med Codefinity - tack...
Adrien Morel
Väl utformad för totala nybörjare
Väl utformad för totala nybörjare, med stegvis utveckling som får mig att känna mig trygg....
_Gracy
det är helt enkelt perfekt förklarat
det är helt enkelt perfekt förklarat! Hittills har jag inte upplevt några svårigheter eftersom allt är så välorganiserat...
Data Engineer
Certifikat för slutförande
Visa dina nyförvärvade färdigheter. Du har förtjänat det
Discover more
Learning tracks
Endast för Ultimate
1 Kurs
1 Projekt
0 Task
Endast för Ultimate
7 Kurser
345 Uppgifter
Endast för Ultimate
5 Kurser
119 Uppgifter
Endast för Ultimate
5 Kurser
146 Uppgifter
Endast för Ultimate
4 Kurser
115 Uppgifter
Endast för Ultimate
6 Kurser
101 Uppgifter
Endast för Ultimate
6 Kurser
168 Uppgifter
Endast för Ultimate
5 Kurser
135 Uppgifter
Endast för Ultimate
2 Kurser
1 Projekt
57 Uppgifter
Endast för Ultimate
7 Kurser
376 Uppgifter
Endast för Ultimate
4 Kurser
143 Uppgifter
Endast för Ultimate
5 Kurser
180 Uppgifter
Endast för Ultimate
5 Kurser
165 Uppgifter
Endast för Ultimate
6 Kurser
308 Uppgifter
Endast för Ultimate
6 Kurser
252 Uppgifter
Endast för Ultimate
8 Kurser
2 Projekt
176 Uppgifter
Endast för Ultimate
2 Kurser
80 Uppgifter
Endast för Ultimate
7 Kurser
293 Uppgifter
Endast för Ultimate
1 Projekt
0 Task
Endast för Ultimate
2 Kurser
21 Uppgifter
Endast för Ultimate
5 Kurser
111 Uppgifter
Endast för Ultimate
2 Kurser
0 Task
Endast för Ultimate
3 Kurser
39 Uppgifter
Endast för Ultimate
13 Kurser
555 Uppgifter
Endast för Ultimate
13 Kurser
555 Uppgifter
Endast för Ultimate
1 Kurs
0 Task
Endast för Ultimate
0 Task
Endast för Ultimate
5 Kurser
139 Uppgifter
Endast för Ultimate
3 Kurser
71 Uppgifter
Endast för Ultimate
5 Kurser
239 Uppgifter
Endast för Ultimate
4 Kurser
125 Uppgifter
Endast för Ultimate
2 Kurser
33 Uppgifter
Endast för Ultimate
3 Kurser
119 Uppgifter
Endast för Ultimate
1 Kurs
15 Uppgifter
Endast för Ultimate
3 Kurser
75 Uppgifter
Endast för Ultimate
3 Kurser
31 Uppgifter
Endast för Ultimate
2 Kurser
151 Uppgifter
Endast för Ultimate
3 Kurser
56 Uppgifter
Endast för Ultimate
2 Kurser
1 Projekt
38 Uppgifter
Endast för Ultimate
3 Kurser
36 Uppgifter
Endast för Ultimate
2 Kurser
1 Projekt
38 Uppgifter
Endast för Ultimate
5 Kurser
134 Uppgifter
Learning tracks
spår
TEST TRACK 12
Nybörjare
4.0
(7146)
spår
Full Stack Web Development
Nybörjare
4.5
(58)
spår
Become a React Developer
Medelnivå
4.9
(7)
spår
Mastering Data Visualization
Medelnivå
4.6
(7)
spår
SQL from Zero to Hero
Nybörjare
4.7
(93)
spår
С++ Essentials
Nybörjare
4.4
(17)
spår
Python from Zero to Hero
Nybörjare
4.7
(284)
spår
Supervised Machine Learning
Medelnivå
4.9
(7)
spår
Python Beyond Intermediate
Nybörjare
5.0
(1)
spår
Java Essentials
Nybörjare
4.3
(9)
spår
Game Development with Unity
Nybörjare
4.6
(7)
spår
Become a Django Developer
Avancerad
4.4
(27)
spår
Flask for Dummies
Medelnivå
4.5
(31)
spår
Frontend Development Foundations
Nybörjare
4.6
(52)
spår
Web Developer from Zero to Hero
Nybörjare
4.6
(56)
spår
Preparation for Data Science
Medelnivå
4.5
(11)
spår
Deep Learning Odyssey
Avancerad
5.0
(3)
spår
Web Development with C#
Nybörjare
4.8
(98)
spår
TEST E2E TRACK BEGINNER
Nybörjare
spår
Test Track
Begginer
4.7
(3)
spår
Skilled Python BackEnd Developer
Avancerad
4.7
(261)
spår
Test Recalculate
Nybörjare
spår
Excel Essentials
Nybörjare
4.5
(33)
spår
Full-Stack .NET Developer Journey
Medelnivå
4.8
(129)
spår
Full-Stack .NET Developer Journey
Medelnivå
4.8
(129)
spår
Test track with rating
Avancerad
4.0
(4)
spår
TEST TEST TRACK
Nybörjare
spår
Data Analyst Foundation
Nybörjare
4.7
(111)
spår
C++ Mastery
Avancerad
spår
Become a QA Engineer
Nybörjare
4.5
(43)
spår
Video Production with Adobe
Nybörjare
spår
Digital Marketing Essentials
Nybörjare
spår
UI/UX Design Tools
Nybörjare
spår
Test image upload track
Nybörjare
spår
Essential Office Skills
Nybörjare
4.6
(24)
spår
GitHub from Zero to Hero
Nybörjare
spår
No-Code Website Development
Nybörjare
spår
C Programming & Low-Level Development
Nybörjare
spår
testes
Nybörjare
4.7
(3)
spår
Test translation track
Medelnivå
spår
Test CMS Track
Nybörjare
4.7
(3)
spår
Python for Data Analysis
Medelnivå
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