SlideShare a Scribd company logo
Java SE 7 {finally}  2011-08-18Andreas Enbohm
19 augusti 2011Sida 2Java SE 7A evolutionaryevolement of Java6 yearssince last updateSomethingsleftout, will briefly discuss this at the endOracle reallypushing Java forward- a lotpolitical problems with Sun made Java 7 postphonedseveraltimesJava still growing (1.42%), #1 mostusedlanguageaccording to TIOBE with 19.4% (Aug 2011)My top 10 new features (not ordered in anyway)
Java SE 7 – Language ChangesNumber 1:Try-with-resources Statement (or ARM-blocks)Before :19 augusti 2011Sida 3static String readFirstLineFromFileWithFinallyBlock(String path)   throwsIOException {BufferedReaderbr = new BufferedReader(new FileReader(path));  try {returnbr.readLine();  } finally {if (br != null) {        try {br.close();        } catch (IOExceptionignore){         //donothing        }    }  }}
Java SE 7 – Language ChangesNumber 1:Try-with-resources Statement (or ARM-blocks)With Java 7:19 augusti 2011Sida 4static String readFirstLineFromFile(String path) throws IOException {     try (BufferedReaderbr = new BufferedReader(new FileReader(path))) {           return br.readLine();     } }
Java SE 7 – Language ChangesNumber 1 - NOTE:The try-with-resources statement is a try statement that declares one or more resources. A resource is as an object that must be closed after the program is finished with it. The try-with-resources statement ensures that each resource is closed at the end of the statement. Any object that implements java.lang.AutoCloseable, which includes all objects which implement java.io.Closeable, can be used as a resource.19 augusti 2011Sida 5
Java SE 7 – Language ChangesNumber 2: 	Strings in switch Statements19 augusti 2011Sida 6public String getTypeOfDayWithSwitchStatement(String dayOfWeekArg) {     String typeOfDay;     switch (dayOfWeekArg) {         case "Monday":typeOfDay = "Start of work week";             break;         case "Tuesday":         case "Wednesday":         case "Thursday":typeOfDay = "Midweek";             break;         case "Friday":typeOfDay = "End of work week";             break;         case "Saturday":         case "Sunday":typeOfDay = "Weekend";             break;         default:             throw new IllegalArgumentException("Invalid day of the week: " + dayOfWeekArg);     }     return typeOfDay;}
Java SE 7 – Language ChangesNumber 2 - NOTE:The Java compiler generates generally more efficient bytecode from switch statements that use String objects than from chained if-then-else statements.19 augusti 2011Sida 7
Java SE 7 – Language ChangesNumber 3:Catching Multiple ExceptionTypesBefore : Difficult to eliminatecodeduplicationdue to different exceptions!19 augusti 2011Sida 8try {   …} catch (IOException ex) { logger.log(ex); throw ex; } catch (SQLException ex) { logger.log(ex); throw ex; }
Java SE 7 – Language ChangesNumber 3:Catching Multiple ExceptionTypesWith Java 7 :19 augusti 2011Sida 9try {   …} catch (IOException|SQLException ex) { logger.log(ex); throw ex; }
Java SE 7 – Language ChangesNumber 3 - NOTE:Catching Multiple ExceptionTypesBytecode generated by compiling a catch block that handles multiple exception types will be smaller (and thus superior) than compiling many catch blocks that handle only one exception type each.  19 augusti 2011Sida 10
Java SE 7 – Language ChangesNumber 4:TypeInference for GenericInstance CreationBefore: Howmanytimeshave you swornabout this duplicatedcode? 19 augusti 2011Sida 11Map<String, List<String>> myMap = new HashMap<String, List<String>>();
Java SE 7 – Language ChangesNumber 4:TypeInference for GenericInstance CreationWith Java 7: 19 augusti 2011Sida 12Map<String, List<String>> myMap = new HashMap<>();
Java SE 7 – Language ChangesNumber 4 - NOTE:TypeInference for GenericInstance CreationWriting new HashMap() (withoutdiamond operator) will still use the rawtype of HashMap (compilerwarning)19 augusti 2011Sida 13
Java SE 7 – Language ChangesNumber 5:Underscores in NumericLiterals19 augusti 2011Sida 14longcreditCardNumber = 1234_5678_9012_3456L; longsocialSecurityNumber = 1977_05_18_3312L; float pi = 3.14_15F; longhexBytes = 0xFF_EC_DE_5E; longhexWords = 0xCAFE_BABE; longmaxLong = 0x7fff_ffff_ffff_ffffL;  long bytes = 0b11010010_01101001_10010100_10010010;
Java SE 7 – Language ChangesNumber 5 - NOTE:Underscores in NumericLiteralsYou can place underscores only between digits; you cannot place underscores in the following places:At the beginning or end of a numberAdjacent to a decimal point in a floating point literalPrior to an F or L suffix In positions where a string of digits is expected19 augusti 2011Sida 15
Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)” a lightweightfork/joinframework with flexible and reusablesynchronizationbarriers, transfer queues, concurrent linked double-endedqueues, and thread-localpseudo-random-number generators.”19 augusti 2011Sida 16
Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)19 augusti 2011Sida 17if (my portion of the work is small enough) 	do the work directly else 	split my work into two pieces invoke the two pieces and       	wait for the results
Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)19 augusti 2011Sida 18
Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)New ClassesForkJoinTask
RecursiveTask
RecursiveAction
ThreadLocalRandom
ForkJoinPool19 augusti 2011Sida 19
Java SE 7 – Filesystem APINumber 7: 	NIO 2 Filesystem API (Non-Blocking I/O)Bettersupports for accessingfile systems such and support for customfile systems (e.g. cloudfile systems)Access to metadata such as file permissionsMoreeffecient support whencopy/movingfilesEnchancedExceptionswhenworking on files, i.e. file.delete() nowthrowsIOException (not just Exception)19 augusti 2011Sida 20
Java SE 7 – JVM EnhancementNumber 8:InvokeDynamic (JSR292)Support for dynamiclanguages so theirperformance levels is near to that of the Java language itselfAt byte code level this means a new operand (instruction) called invokedynamicMake is possible to do efficient method invocation for dynamic languages (such as JRuby) instead of statically (like Java) .Huge performance gain 19 augusti 2011Sida 21
Java SE 7 – JVM EnhancementNumber 9: 	G1 and JVM optimizationG1 morepredictable and uses multiple coresbetterthan CMSTiered Compilation –Bothclient and server JIT compilers are usedduringstarupNUMA optimization - Parallel Scavenger garbage collector has been extended to take advantage of machines with NUMA (~35% performance gain)EscapeAnalysis - analyze the scope of a new object's and decide whether to allocate it on the Java heap19 augusti 2011Sida 22
Java SE 7 – JVM EnhancementNumber 9:EscapeAnalysis19 augusti 2011Sida 23public class Person {     private String name; private int age;     public Person(String personName, intpersonAge) { name = personName; age = personAge; }        public Person(Person p) {            this(p.getName(), p.getAge());        }} public classEmployee {     private Person person; // makes a defensive copy to protectagainstmodifications by caller    public Person getPerson() {    return new Person(person)     }; public voidprintEmployeeDetail(Employeeemp) {     Person person = emp.getPerson(); // this callerdoes not modify the object, so defensive copywasunnecessarySystem.out.println ("Employee'sname: " + person.getName() + "; age: " + person.getAge()); } }
Java SE 7 - NetworkingNumber 10: 	Support for SDP SocketDirectProtocol  (SDP) enablesJVMs to use Remote Direct Memory Access (RDMA). RDMA enables moving data directly from the memory of one computer to another computer, bypassing the operating system of both computers and resulting in significant performance gains. The result is High throughput and Low latency (minimal delay between processing input and providing output) such as you would expect in a real-time application. 19 augusti 2011Sida 24

More Related Content

What's hot (19)

PDF
Kotlin - Better Java
Dariusz Lorenc
 
ODP
Open Source Compiler Construction for the JVM
Tom Lee
 
PDF
Connecting the Worlds of Java and Ruby with JRuby
Nick Sieger
 
PDF
Using Java from Ruby with JRuby IRB
Hiro Asari
 
PDF
Seeking Clojure
chrisriceuk
 
PDF
Camel and JBoss
JBug Italy
 
PPTX
Lecture from javaday.bg by Nayden Gochev/ Ivan Ivanov and Mitia Alexandrov
Nayden Gochev
 
PPTX
Software Uni Conf October 2014
Nayden Gochev
 
PPTX
Mastering Java Bytecode - JAX.de 2012
Anton Arhipov
 
PPTX
K is for Kotlin
TechMagic
 
PDF
Faster & Greater Messaging System HornetQ zzz
JBug Italy
 
PPTX
SoftwareUniversity seminar fast REST Api with Spring
Nayden Gochev
 
PDF
Cracking JWT tokens: a tale of magic, Node.JS and parallel computing
Luciano Mammino
 
PPTX
JRuby in Java Projects
jazzman1980
 
PDF
TorqueBox - Ultrapassando a fronteira entre Java e Ruby
Bruno Oliveira
 
PDF
Modern Programming in Java 8 - Lambdas, Streams and Date Time API
Ganesh Samarthyam
 
PDF
TorqueBox at DC:JBUG - November 2011
bobmcwhirter
 
PDF
Productive Programming in Java 8 - with Lambdas and Streams
Ganesh Samarthyam
 
PPT
Invoke dynamics
Balamurugan Soundararajan
 
Kotlin - Better Java
Dariusz Lorenc
 
Open Source Compiler Construction for the JVM
Tom Lee
 
Connecting the Worlds of Java and Ruby with JRuby
Nick Sieger
 
Using Java from Ruby with JRuby IRB
Hiro Asari
 
Seeking Clojure
chrisriceuk
 
Camel and JBoss
JBug Italy
 
Lecture from javaday.bg by Nayden Gochev/ Ivan Ivanov and Mitia Alexandrov
Nayden Gochev
 
Software Uni Conf October 2014
Nayden Gochev
 
Mastering Java Bytecode - JAX.de 2012
Anton Arhipov
 
K is for Kotlin
TechMagic
 
Faster & Greater Messaging System HornetQ zzz
JBug Italy
 
SoftwareUniversity seminar fast REST Api with Spring
Nayden Gochev
 
Cracking JWT tokens: a tale of magic, Node.JS and parallel computing
Luciano Mammino
 
JRuby in Java Projects
jazzman1980
 
TorqueBox - Ultrapassando a fronteira entre Java e Ruby
Bruno Oliveira
 
Modern Programming in Java 8 - Lambdas, Streams and Date Time API
Ganesh Samarthyam
 
TorqueBox at DC:JBUG - November 2011
bobmcwhirter
 
Productive Programming in Java 8 - with Lambdas and Streams
Ganesh Samarthyam
 
Invoke dynamics
Balamurugan Soundararajan
 

Viewers also liked (8)

PPTX
Behavior-driven Development and Lambdaj
Andreas Enbohm
 
PPTX
BDD Short Introduction
Andreas Enbohm
 
PPT
Project Lambda - Closures after all?
Andreas Enbohm
 
PPTX
Java Extension Methods
Andreas Enbohm
 
PPTX
Software Craftsmanship
Andreas Enbohm
 
PPT
Java 7 new features
Shivam Goel
 
PDF
Готовимся к Java SE 7 Programmer: от новичка до профессионала за 45 дней
SkillFactory
 
PPT
SOLID Design Principles
Andreas Enbohm
 
Behavior-driven Development and Lambdaj
Andreas Enbohm
 
BDD Short Introduction
Andreas Enbohm
 
Project Lambda - Closures after all?
Andreas Enbohm
 
Java Extension Methods
Andreas Enbohm
 
Software Craftsmanship
Andreas Enbohm
 
Java 7 new features
Shivam Goel
 
Готовимся к Java SE 7 Programmer: от новичка до профессионала за 45 дней
SkillFactory
 
SOLID Design Principles
Andreas Enbohm
 
Ad

Similar to Java7 - Top 10 Features (20)

PPTX
Java7 Features
Jitender Jain
 
PPTX
Java and OpenJDK: disecting the ecosystem
Rafael Winterhalter
 
PDF
FFM / Panama: A case study with OpenSSL and Tomcat
Jean-Frederic Clere
 
PPT
Java7
Dinesh Guntha
 
PDF
Panama.pdf
Jean-Frederic Clere
 
PDF
"Highlights from Java 10&11 and Future of Java" at Java User Group Bonn 2018 ...
Vadym Kazulkin
 
PPTX
Java 7 & 8 New Features
Leandro Coutinho
 
PDF
Java features. Java 8, 9, 10, 11
Ivelin Yanev
 
PPTX
Java se7 features
Kumaraswamy M
 
PPTX
Pure Java RAD and Scaffolding Tools Race
Baruch Sadogursky
 
PPT
JBUG 11 - Outside The Java Box
Tikal Knowledge
 
PPTX
Java 9 features
shrinath97
 
PPTX
Java 7 & 8
Ken Coenen
 
PPT
Java one 2010
scdn
 
PPT
Project Coin
Balamurugan Soundararajan
 
PPTX
DevNexus 2020: Discover Modern Java
Henri Tremblay
 
PDF
55j7
swein2
 
PPTX
Future of Java EE with Java SE 8
Hirofumi Iwasaki
 
ODT
Best Of Jdk 7
Kaniska Mandal
 
PPT
Tech Days 2010
Luqman Shareef
 
Java7 Features
Jitender Jain
 
Java and OpenJDK: disecting the ecosystem
Rafael Winterhalter
 
FFM / Panama: A case study with OpenSSL and Tomcat
Jean-Frederic Clere
 
"Highlights from Java 10&11 and Future of Java" at Java User Group Bonn 2018 ...
Vadym Kazulkin
 
Java 7 & 8 New Features
Leandro Coutinho
 
Java features. Java 8, 9, 10, 11
Ivelin Yanev
 
Java se7 features
Kumaraswamy M
 
Pure Java RAD and Scaffolding Tools Race
Baruch Sadogursky
 
JBUG 11 - Outside The Java Box
Tikal Knowledge
 
Java 9 features
shrinath97
 
Java 7 & 8
Ken Coenen
 
Java one 2010
scdn
 
DevNexus 2020: Discover Modern Java
Henri Tremblay
 
55j7
swein2
 
Future of Java EE with Java SE 8
Hirofumi Iwasaki
 
Best Of Jdk 7
Kaniska Mandal
 
Tech Days 2010
Luqman Shareef
 
Ad

Recently uploaded (20)

PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
“Computer Vision at Sea: Automated Fish Tracking for Sustainable Fishing,” a ...
Edge AI and Vision Alliance
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Digital Circuits, important subject in CS
contactparinay1
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 

Java7 - Top 10 Features

  • 1. Java SE 7 {finally} 2011-08-18Andreas Enbohm
  • 2. 19 augusti 2011Sida 2Java SE 7A evolutionaryevolement of Java6 yearssince last updateSomethingsleftout, will briefly discuss this at the endOracle reallypushing Java forward- a lotpolitical problems with Sun made Java 7 postphonedseveraltimesJava still growing (1.42%), #1 mostusedlanguageaccording to TIOBE with 19.4% (Aug 2011)My top 10 new features (not ordered in anyway)
  • 3. Java SE 7 – Language ChangesNumber 1:Try-with-resources Statement (or ARM-blocks)Before :19 augusti 2011Sida 3static String readFirstLineFromFileWithFinallyBlock(String path) throwsIOException {BufferedReaderbr = new BufferedReader(new FileReader(path)); try {returnbr.readLine(); } finally {if (br != null) { try {br.close(); } catch (IOExceptionignore){ //donothing } } }}
  • 4. Java SE 7 – Language ChangesNumber 1:Try-with-resources Statement (or ARM-blocks)With Java 7:19 augusti 2011Sida 4static String readFirstLineFromFile(String path) throws IOException { try (BufferedReaderbr = new BufferedReader(new FileReader(path))) { return br.readLine(); } }
  • 5. Java SE 7 – Language ChangesNumber 1 - NOTE:The try-with-resources statement is a try statement that declares one or more resources. A resource is as an object that must be closed after the program is finished with it. The try-with-resources statement ensures that each resource is closed at the end of the statement. Any object that implements java.lang.AutoCloseable, which includes all objects which implement java.io.Closeable, can be used as a resource.19 augusti 2011Sida 5
  • 6. Java SE 7 – Language ChangesNumber 2: Strings in switch Statements19 augusti 2011Sida 6public String getTypeOfDayWithSwitchStatement(String dayOfWeekArg) { String typeOfDay; switch (dayOfWeekArg) { case "Monday":typeOfDay = "Start of work week"; break; case "Tuesday": case "Wednesday": case "Thursday":typeOfDay = "Midweek"; break; case "Friday":typeOfDay = "End of work week"; break; case "Saturday": case "Sunday":typeOfDay = "Weekend"; break; default: throw new IllegalArgumentException("Invalid day of the week: " + dayOfWeekArg); } return typeOfDay;}
  • 7. Java SE 7 – Language ChangesNumber 2 - NOTE:The Java compiler generates generally more efficient bytecode from switch statements that use String objects than from chained if-then-else statements.19 augusti 2011Sida 7
  • 8. Java SE 7 – Language ChangesNumber 3:Catching Multiple ExceptionTypesBefore : Difficult to eliminatecodeduplicationdue to different exceptions!19 augusti 2011Sida 8try { …} catch (IOException ex) { logger.log(ex); throw ex; } catch (SQLException ex) { logger.log(ex); throw ex; }
  • 9. Java SE 7 – Language ChangesNumber 3:Catching Multiple ExceptionTypesWith Java 7 :19 augusti 2011Sida 9try { …} catch (IOException|SQLException ex) { logger.log(ex); throw ex; }
  • 10. Java SE 7 – Language ChangesNumber 3 - NOTE:Catching Multiple ExceptionTypesBytecode generated by compiling a catch block that handles multiple exception types will be smaller (and thus superior) than compiling many catch blocks that handle only one exception type each. 19 augusti 2011Sida 10
  • 11. Java SE 7 – Language ChangesNumber 4:TypeInference for GenericInstance CreationBefore: Howmanytimeshave you swornabout this duplicatedcode? 19 augusti 2011Sida 11Map<String, List<String>> myMap = new HashMap<String, List<String>>();
  • 12. Java SE 7 – Language ChangesNumber 4:TypeInference for GenericInstance CreationWith Java 7: 19 augusti 2011Sida 12Map<String, List<String>> myMap = new HashMap<>();
  • 13. Java SE 7 – Language ChangesNumber 4 - NOTE:TypeInference for GenericInstance CreationWriting new HashMap() (withoutdiamond operator) will still use the rawtype of HashMap (compilerwarning)19 augusti 2011Sida 13
  • 14. Java SE 7 – Language ChangesNumber 5:Underscores in NumericLiterals19 augusti 2011Sida 14longcreditCardNumber = 1234_5678_9012_3456L; longsocialSecurityNumber = 1977_05_18_3312L; float pi = 3.14_15F; longhexBytes = 0xFF_EC_DE_5E; longhexWords = 0xCAFE_BABE; longmaxLong = 0x7fff_ffff_ffff_ffffL; long bytes = 0b11010010_01101001_10010100_10010010;
  • 15. Java SE 7 – Language ChangesNumber 5 - NOTE:Underscores in NumericLiteralsYou can place underscores only between digits; you cannot place underscores in the following places:At the beginning or end of a numberAdjacent to a decimal point in a floating point literalPrior to an F or L suffix In positions where a string of digits is expected19 augusti 2011Sida 15
  • 16. Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)” a lightweightfork/joinframework with flexible and reusablesynchronizationbarriers, transfer queues, concurrent linked double-endedqueues, and thread-localpseudo-random-number generators.”19 augusti 2011Sida 16
  • 17. Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)19 augusti 2011Sida 17if (my portion of the work is small enough) do the work directly else split my work into two pieces invoke the two pieces and wait for the results
  • 18. Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)19 augusti 2011Sida 18
  • 19. Java SE 7 – ConcurrentUtilitiesNumber 6:Fork/JoinFramework (JSR 166)New ClassesForkJoinTask
  • 24. Java SE 7 – Filesystem APINumber 7: NIO 2 Filesystem API (Non-Blocking I/O)Bettersupports for accessingfile systems such and support for customfile systems (e.g. cloudfile systems)Access to metadata such as file permissionsMoreeffecient support whencopy/movingfilesEnchancedExceptionswhenworking on files, i.e. file.delete() nowthrowsIOException (not just Exception)19 augusti 2011Sida 20
  • 25. Java SE 7 – JVM EnhancementNumber 8:InvokeDynamic (JSR292)Support for dynamiclanguages so theirperformance levels is near to that of the Java language itselfAt byte code level this means a new operand (instruction) called invokedynamicMake is possible to do efficient method invocation for dynamic languages (such as JRuby) instead of statically (like Java) .Huge performance gain 19 augusti 2011Sida 21
  • 26. Java SE 7 – JVM EnhancementNumber 9: G1 and JVM optimizationG1 morepredictable and uses multiple coresbetterthan CMSTiered Compilation –Bothclient and server JIT compilers are usedduringstarupNUMA optimization - Parallel Scavenger garbage collector has been extended to take advantage of machines with NUMA (~35% performance gain)EscapeAnalysis - analyze the scope of a new object's and decide whether to allocate it on the Java heap19 augusti 2011Sida 22
  • 27. Java SE 7 – JVM EnhancementNumber 9:EscapeAnalysis19 augusti 2011Sida 23public class Person { private String name; private int age; public Person(String personName, intpersonAge) { name = personName; age = personAge; } public Person(Person p) { this(p.getName(), p.getAge()); }} public classEmployee { private Person person; // makes a defensive copy to protectagainstmodifications by caller public Person getPerson() { return new Person(person) }; public voidprintEmployeeDetail(Employeeemp) { Person person = emp.getPerson(); // this callerdoes not modify the object, so defensive copywasunnecessarySystem.out.println ("Employee'sname: " + person.getName() + "; age: " + person.getAge()); } }
  • 28. Java SE 7 - NetworkingNumber 10: Support for SDP SocketDirectProtocol (SDP) enablesJVMs to use Remote Direct Memory Access (RDMA). RDMA enables moving data directly from the memory of one computer to another computer, bypassing the operating system of both computers and resulting in significant performance gains. The result is High throughput and Low latency (minimal delay between processing input and providing output) such as you would expect in a real-time application. 19 augusti 2011Sida 24
  • 29. Java SE 7 - NetworkingNumber 10 - NOTE: Support for SDPThe Sockets Direct Protocol (SDP) is a networking protocol developed to support stream connections over InfiniBand fabric. Solaris 10 5/08 has support for InfiniBand fabric (which enables RDMA). On Linux, the InfiniBand package is called OFED (OpenFabrics Enterprise Distribution). 19 augusti 2011Sida 25
  • 30. Java SE 7A complete list of all new features can be seen on http://www.oracle.com/technetwork/java/javase/jdk7-relnotes-418459.html19 augusti 2011Sida 26
  • 31. Java SE 8Some features whereleftout in Java 7; mostimportant are Project Lambda (closures) and Project Jigsaw (modules) targeted for Java 8 (late 2012)Lambdas (and extension methods) willprobably be the biggestsinglechangeevermade on the JVM. Will introduce a powerfulprogrammingmodel, however it comes with a great deal of complexity as well. Moduleswillmade it easier to version modules (no moreJAR-hell) and introducea new way of definingclasspaths19 augusti 2011Sida 27
  • 32. Java SE 7 & 8Questions?19 augusti 2011Sida 28