Category: Uncategorised

Java Inner Classes | Nested Classes

–Section– –Content– Part 1: Nested Class Types & Benefits Basic Syntax, Types of Nested Classes and Benefits Part 2: Nested Class Object Creation Create Objects of – Inner Class, Static Nested Class, Local Class, Anonymous Class Part 3: Nested Class Member Access Access Members in Outer Class, Inner Class, Static Nested Class, Local Class, Anonymous […]

Spring Boot Tutorial : Part 1 REST

Annotation Meaning @RestController Defines Class that provides REST APIs endpoints methods @RequestMapping(“/myapp”) Defines endpoint for the overall API Class @GetMapping(“/info”) @GetMapping(“/students/{studentId}”) Defines Method that provides API endpoint implementation (@PathVariable int studentId) Defines Variable containing data in endpoint link

Docker Commands Cheat Sheet

Part 1 Docker Containers Object Type Command Type Command Meaning Container List docker psdocker ps -a List all running containers -a : List all containers – including stopped ones Container Create + Start docker run {image-name}docker run {imageName:tagName}docker run -flag image Create and start a new container based on image IMAGENAME (or use the image […]