1 / 13

Plataforma Java

Plataforma Java. Agenda. Arquitetura da Plataforma Java O Compilador A Maquina Virtual O Coletor de Lixo. Arquitetura da Plataforma Java. Class Loader Bytecode Verifyer. C ódigo Fonte. M áquina Virtual. Compilador JIT. Compilador. Sistema Operacional. Bytecode. JDK.

verena
Download Presentation

Plataforma Java

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Plataforma Java

  2. Plataforma Java Agenda • ArquiteturadaPlataforma Java • O Compilador • A Maquina Virtual • O Coletor de Lixo

  3. Plataforma Java ArquiteturadaPlataforma Java Class Loader BytecodeVerifyer CódigoFonte Máquina Virtual Compilador JIT Compilador SistemaOperacional Bytecode

  4. Plataforma Java JDK

  5. Plataforma Java O Compilador • Compilação • Processamento de Anotations (6.0+) • javax.tools.JavaCompiler (6.0+) • Sun • GCJ, Jikes • Eclipse • Compilador Incremental JDT

  6. Plataforma Java JVM • Componentes • Núcleo • Interpretador de Bytecode • Compilador JIT • Camada de porting • Gerenciador de execução • Class Library • Thread manager • Hotspot • Harmony

  7. Plataforma Java Coletor de Lixo • Benefícion • Semerrosporponteirospendentes • Semerrospordupladesalocação • Menoserros de vazamento de memória • Porgerações (efêmero) • Tipos • Pausacompleta • Incremental • Concorrente

  8. Plataforma Java Gerações de objetos

  9. Plataforma Java DimensionandoGerações • Tempo (throughput) xEspaço (footprint) • Principio damaiorlatência • Prontidão • Tempos de pausa • Parâmetrosda VM Hotspot: -server -Xmse –Xmx (heap inicialemaximo) -XX:MinHeapFreeRatioe -XX:MaxHeapFreeRatio -XX:MaxPermSize -XX:+PrintGCDetails -XX:+AggressiveOpts

  10. Plataforma Java Tipos de Coletores • Serial • Throughput -XX:+UseParallelGC • Concurrent -Xincgcou -XX:+UseConcMarkSweepGC • Incremental (deprecated)

  11. Plataforma Java Exercício: VisualVM

  12. Plataforma Java Resumo • Java éumalinguagemcompilada E interpretada. • O compiladoréresponsávelportraduzir de java para um códigointermediário, obytecode. • A JVM interpretabytecode, executandodiretamenteoucompilandoalgunstrechosparacódigonativo antes. • O garbage collector éoresponsávelpeladesalicaçãode objetosinúteiseconcorrecom a aplicaçãopor CPU ememória.

  13. Plataforma Java Dúvidas? http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html

More Related