Skip to main content

How I teach Java in 1hr 5 sessions

I know a lot of people can disagree with this but I am trying to keep it simple and as only my own opinion.

It took me more than 5 yrs to design this syllabus to help beginners learn and get motivated to program in Java. When I started teaching I use to take 10-15 days to teach java and I can clearly see on participants faces that they were not confident even after spending so much time with them. However recently I was able to successfully use a shorter And I am sure this won't be the final one and it will change a lot after few more batches. And the only way I do this is by
focusing on important concepts and cutting dumb one's in a language to accomplish my objectives.

Session 1
  1.   Data Types (int, double, String )  Class Notes
  2.   Operators (Arithmatic - +,-,*,/ )
  3.   Functions
  Homework -

  •  Write 50 functions and execute them from main method            
  •  Write functions with 0 or more input parameters
  •  Write functions that returns a value



Session 2 (Point here is to introduce Objects early and not to bullshit with amazing powers of Object, keep it simple)
  1.   Introduce Class and Objects 
  2.   Introduce Java Beans Classes (i.e. Objects with only Data) 
  3.   Introduce Classes with only functions (i.e. Service Layer or Business Logic Classes)
  4.   Introduce ArrayList (i.e. Object with data and logic to operate on it)
  5.   Summary - We mostly use Object in the above three ways.
  Homework -

  •  Write 20 Java Beans classes              
  •  Write some classes which operates on the above classes as Service Layer or Business Logic


 Session 3 (Write Simple Applications)
  1.  ContactApp - Contact Java Bean class and ContactService with ArrayList to add and getAll functions
  2.   FeedbackApp - Feedback.java bean and FeedbackService for add and getAll
  3.  RegistrationApp
 Session 4 (Try writing more simple applications, introduce interface)
  1.   Introduce Interfaces
  2.   Introduce Map, HashMap, List, ArrayList, Set, HashSet
  3.   Start writing interfaces for Service classes introduced in Session-2 & Session-3
  Homework

  •    Exception handling              
  •    Write 5 small two class apps


 Session 5 (Write more small apps and introduce control and loop statements)
  1.    Introduce Control and Loop statements
  2.    Build 3 small apps with 2 Java Beans, Interface and Implementation
    Homework - Learn from the book (Arrays, Generics, Annotations)


  

Comments

Anonymous said…
could you post pdf's of the courses or make future posts were you walk us through every sesion
Hi dude, I didn't see Thread part of your syllabus , am I missing something or its purposefully left out, In my opinion Thread is something you can not ignore if you are doing Java programming.

Javin
Why String is immutable in Java
afx_efx said…
+1 on the pdf's or possibly videos?
Updated blog with Class notes
nofearinc said…
I'm also interested in the PDFs, however I didn't quite get is this 5x1h sessions or a total of 1 hour (which seems impossible to me)? We do trainings with 16h of lectures and 32h of exercises for beginners and it's been proved to work here for most people - the more intense, the higher the chance that people didn't get the basic concepts.
IT said…
I have read your blog its very attractive and impressive. I like it your blog.

Java Training in Chennai Core Java Training in Chennai Core Java Training in Chennai

Java Online Training Java Online Training Core Java 8 Training in Chennai java 8 online training JavaEE Training in Chennai Java EE Training in Chennai

Popular posts from this blog

Access multiple Databases in JPA

According to JPA specification we can define multiple "persistence-unit" elements (i.e. like below) in persistence.xml file and can easily refer them inside Dao layers as this. public class PolarDaoImpl {     @PersistenceContext(unitName="PolarPU")     protected EntityManager entityManager; -- } public class BearDaoImpl {     @PersistenceContext(unitName="BearPU")     protected EntityManager entityManager; -- } Checkout sample persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">     <!-- Database 1 -->     <persistence-unit name="PolarPU" transaction-type="RESOURCE_LOCAL">         <

JPA 2 new feature @ElementCollection explained

@ElementCollection is new annotation introduced in JPA 2.0, This will help us get rid of One-Many and Many-One shitty syntax. Example 1: Stores list of Strings in an Entity @Entity public class Users implements Serializable {     private static final long serialVersionUID = 1L;     @Id     @GeneratedValue(strategy = GenerationType.AUTO)     private Long id;     @ElementCollection     private List<String> certifications = new ArrayList <String> ();     public Long getId() {         return id;     }     public void setId(Long id) {         this.id = id;     }     public List <String> getCertifications() {         return certifications;     }     public void setCertifications(List <String> certifications) {         this.certifications = certifications;     } .. }         Users u = new Users();         u.getCertifications().add("Sun Certified Java Programmer");         em.persist(u); Generated Tables    Users    Co

Reuse JPA Entities as DTO

Note : Major design advantages of JPA Entities are they can detached and used across tiers and networks and later can by merged. Checkout this new way of querying entities in JPA 2.0 String ql = " SELECT new prepclass2.Employee (e.firstname, e.lastname) FROM Employee e "; List<Employee> dtos = em.createQuery(ql).getResultList(); The above query loads all Employee entities but with subset of data i.e. firstname, lastname. Employee entity looks like this. @Entity @Table(name="emp") public class Employee implements Serializable {     private static final long serialVersionUID = 1L;     @Id     @GeneratedValue(strategy = GenerationType.AUTO)     private Long id;     @Column     private String firstname;     @Column     private String lastname;     @Column     private String username;     @Column     private String street;     @Column     private String city;     @Column     private String state;     @Column     private String zipc