Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Kendo UI for Angular     Angular

Java Spring Boot Integration — Kendo UI for Angular

Demonstrates the Grid and Upload components with a Java Spring Boot Maven backend.
See the Java integration article for full details.


Components Used

Component Docs
Grid Grid Component
Upload Upload Component

Project Structure

Directory Description
frontend/ Angular application
backend/ Java Spring Boot application

Prerequisites

Getting Started

# Clone the repository
git clone https://github.com/telerik/kendo-angular/

Start the Backend

cd examples-standalone/kendoangular-java-integration/backend
mvn spring-boot:run

Backend available at http://localhost:8080.

Start the Frontend

cd examples-standalone/kendoangular-java-integration/ClientApp
npm install
ng serve

Frontend available at http://localhost:4200.


Features

Grid Component

  • Displays a list of products
  • Client-side sorting, filtering, grouping, and paging via the process helper
  • Full CRUD operations against the server

Upload Component

  • File upload to the backend server

See Also