https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=652&get_params=p_exam_id:1Z0-803
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=609&get_params=dc:D65792
https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=652&get_params=p_exam_id:1Z0-850
https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=5001&get_params=p_exam_id:1Z0-850
https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=652&get_params=p_exam_id:1Z0-808
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=609&get_params=dc:D83527
https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=652&get_params=p_exam_id:1Z0-851
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=609&get_params=dc:D65794
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=609&get_params=dc:D65792
https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=652&get_params=p_exam_id:1Z0-804
Tuesday, March 17, 2015
Become Expert Java Developer:- The learning resource
Getting started with Java
1. Head First Java
A must read book to understand basic of Java language, how Java works, how JVM works etc.
2. Java The complete reference By Herbert Schield
This is my first book where I learned Java language and OOP very well when I was 2nd year student in my undergrade.
3. Java How To Program - Paul Deitel, Harvey Deitel
I found the book very useful when I learned Desktop application with Java. I read the book in 2006.
4. The Well-Grounded Java Developer
Vital techniques of Java 7 and polyglot programming
This books is for a little advance programmer and will help you to write modern and efficient Java code and help you to understand fundamentals of JVM processes.
Intermediate Java
1. SCJP book by Kathy Sierra
I think the latest edition of the book was for Java 6. Still it's very relevant and it covers a lot of ground. Even though this is targeted towards the SCJP exam, people who are not studying for the exam will be also benefitted. [Amazon link http://www.amazon.com/SCJP-Certified-Programmer-Java-310-065/dp/0071591060/]
2. Effective Java (2nd edition) by Joshua Bloch
This is the best book written on Java. If you don't have time to read lots of books, just read this one. It's sort of "best practices" book. It is very practical. You will be able to apply the knowledge of this book immediately. You need have a good grasp on your Java knowledge before you start reading this. [Amazon link http://www.amazon.com/Effective-Java-Edition-Joshua-Bloch/dp/0321356683/]
3. [Optional] Java 8 in Action
Makes you familiar with new features of Java 8. Very well written. [Amazon link - http://www.amazon.com/Java-Action-Lambdas-functional-style-programming/dp/1617291994/]
Design Pattern
1. Head First Design Pattern
The book is very popular for any platform. And a must read book for any developer. Good thing is the examples of the book are written entirely in Java, though Design pattern is not language dependent. So, as a Java developer you will enjoy more compare to other developers.
Code organisation and best practices
1. Clean Code by Uncle Bob
Every developer (not only java) should read this book. We spent more time reading code than writing. This book will help you write clean and maintainable code. So that when other people read your code they will be grateful to you. Examples are given in java which is a plus. [Amazon link - http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882/ ]
Java Web Development
1. Head First JSP & Servlet
2. Java EE official tutorial
Spring framework
1. Spring.io http://spring.io/guides
The getting started guides are awesome to understand each project/module under Spring.io
2. Pro Spring - Apress
I found the book useful to learn Spring in details. It covers Spring 4.
3. Pluralsight.com
Those who like to video tutorial to learn Spring, Spring MVC and other Spring related technology.
4. LivingOnCodes.com
Another good site where Mozammel bhai (Admin of this group) taught Spring in Bangla. So, those who want to learn Spring framework in Bangla, it will be an excellent option.
5. Spring in Action, Third Edition (Manning publication)
One of the best book for learning spring in depth.
Functional Programming, based on JVM
1. Coursera course on FP and Scala - https://www.coursera.org/course/progfun
The course is really nice where Scala creator teaches FP as well as Scala.
2. Scala for Java developers - Packt Publishing
I am reading the book and found interesting as a java developer perspective. You will get very good idea how a Java project can be benefited with Scala and vice versa.
3. Clojure for the Brave and True - A good free online book to get started with Clojure and Functional Programming. Features one of the best introduction to concurrency and easiest introduction to the CSP (Communication Sequential Process) as well as good grasp on Java interoperability. http://www.braveclojure.com
4. Joy of Clojure - Manning
An advanced book on Clojure, Functional Programming, Philosophy, and an advanced take on features like macros, concurrency, program design. Very well written and currently at version 2. http://www.joyofclojure.com
5. Programming in Scala by Odersky, Venners and Spoon - Artima
Very good and beginner friendly introduction to Scala. Written by the Scala creator Martin Odersky himself. Highly recommended for anyone aspiring to be a Scala developer.
1. Head First Java
A must read book to understand basic of Java language, how Java works, how JVM works etc.
2. Java The complete reference By Herbert Schield
This is my first book where I learned Java language and OOP very well when I was 2nd year student in my undergrade.
3. Java How To Program - Paul Deitel, Harvey Deitel
I found the book very useful when I learned Desktop application with Java. I read the book in 2006.
4. The Well-Grounded Java Developer
Vital techniques of Java 7 and polyglot programming
This books is for a little advance programmer and will help you to write modern and efficient Java code and help you to understand fundamentals of JVM processes.
Intermediate Java
1. SCJP book by Kathy Sierra
I think the latest edition of the book was for Java 6. Still it's very relevant and it covers a lot of ground. Even though this is targeted towards the SCJP exam, people who are not studying for the exam will be also benefitted. [Amazon link http://www.amazon.com/SCJP-Certified-Programmer-Java-310-065/dp/0071591060/]
2. Effective Java (2nd edition) by Joshua Bloch
This is the best book written on Java. If you don't have time to read lots of books, just read this one. It's sort of "best practices" book. It is very practical. You will be able to apply the knowledge of this book immediately. You need have a good grasp on your Java knowledge before you start reading this. [Amazon link http://www.amazon.com/Effective-Java-Edition-Joshua-Bloch/dp/0321356683/]
3. [Optional] Java 8 in Action
Makes you familiar with new features of Java 8. Very well written. [Amazon link - http://www.amazon.com/Java-Action-Lambdas-functional-style-programming/dp/1617291994/]
Design Pattern
1. Head First Design Pattern
The book is very popular for any platform. And a must read book for any developer. Good thing is the examples of the book are written entirely in Java, though Design pattern is not language dependent. So, as a Java developer you will enjoy more compare to other developers.
Code organisation and best practices
1. Clean Code by Uncle Bob
Every developer (not only java) should read this book. We spent more time reading code than writing. This book will help you write clean and maintainable code. So that when other people read your code they will be grateful to you. Examples are given in java which is a plus. [Amazon link - http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882/ ]
Java Web Development
1. Head First JSP & Servlet
2. Java EE official tutorial
Spring framework
1. Spring.io http://spring.io/guides
The getting started guides are awesome to understand each project/module under Spring.io
2. Pro Spring - Apress
I found the book useful to learn Spring in details. It covers Spring 4.
3. Pluralsight.com
Those who like to video tutorial to learn Spring, Spring MVC and other Spring related technology.
4. LivingOnCodes.com
Another good site where Mozammel bhai (Admin of this group) taught Spring in Bangla. So, those who want to learn Spring framework in Bangla, it will be an excellent option.
5. Spring in Action, Third Edition (Manning publication)
One of the best book for learning spring in depth.
Functional Programming, based on JVM
1. Coursera course on FP and Scala - https://www.coursera.org/course/progfun
The course is really nice where Scala creator teaches FP as well as Scala.
2. Scala for Java developers - Packt Publishing
I am reading the book and found interesting as a java developer perspective. You will get very good idea how a Java project can be benefited with Scala and vice versa.
3. Clojure for the Brave and True - A good free online book to get started with Clojure and Functional Programming. Features one of the best introduction to concurrency and easiest introduction to the CSP (Communication Sequential Process) as well as good grasp on Java interoperability. http://www.braveclojure.com
4. Joy of Clojure - Manning
An advanced book on Clojure, Functional Programming, Philosophy, and an advanced take on features like macros, concurrency, program design. Very well written and currently at version 2. http://www.joyofclojure.com
5. Programming in Scala by Odersky, Venners and Spoon - Artima
Very good and beginner friendly introduction to Scala. Written by the Scala creator Martin Odersky himself. Highly recommended for anyone aspiring to be a Scala developer.
java se 7 programmer I
http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=5001&get_params=p_exam_id:1Z0-803&p_org_id=&lang=
Subscribe to:
Comments (Atom)