This sample project demonstrates how to utilize Kendo UI for Angular's Grid and Upload components with a Java Spring Boot Maven backend.
For more detailed information, refer to the Java integration article.
The project consists of two main parts:
- Frontend: Contains the Angular application, located in the
frontend
directory. - Backend: Contains the Java Spring Boot application, located in the
backend
directory.
Ensure you have the following tools installed on your machine:
-
Angular CLI (18.0.0 or later): A command-line interface for Angular. Download Angular CLI.
-
Java Development Kit (JDK 23): Essential for running Java applications. Download JDK.
- Note: For macOS, ensure you download the correct installer for your architecture:
- arm64: For Apple Silicon (M1, M2, etc.) Macs.
- x64: For Intel-based Macs.
- Note: For macOS, ensure you download the correct installer for your architecture:
-
Apache Maven: A build automation tool for Java projects. Install using Homebrew on macOS, or download manually.
-
Clone the Repository: Clone the repository to your local machine to get the project files.
git clone https://github.com/telerik/kendo-angular/
-
Navigate to the Backend Directory:
cd kendo-angular/examples-standalone/kendoangular-java-integration/backend
-
Run the Java Spring Boot Application:
mvn spring-boot:run
-
Access the Java Spring Boot Application:
- Open your browser and navigate to http://localhost:8080.
-
Navigate to the Frontend Directory:
cd kendo-angular/examples-standalone/kendoangular-java-integration/ClientApp
-
Install Project Dependencies:
npm install
-
Run the Angular Application:
ng serve
-
Open Your Browser:
- Navigate to http://localhost:4200 to view the Angular application.
The application demonstrates the following features:
-
Grid Component:
- Displays a list of products.
- Supports client-side sorting, filtering, grouping, and paging using the process helper.
- Performs Create, Read, Update, and Delete (CRUD) operations on the server.
-
Upload Component:
- Allows users to upload files to the server.