java (4)

در نمایش آنلاین پاورپوینت، ممکن است بعضی علائم، اعداد و حتی فونت‌ها به خوبی نمایش داده نشود. این مشکل در فایل اصلی پاورپوینت وجود ندارد.






  • جزئیات
  • امتیاز و نظرات
  • متن پاورپوینت

امتیاز

درحال ارسال
امتیاز کاربر [0 رای]

نقد و بررسی ها

هیچ نظری برای این پاورپوینت نوشته نشده است.

اولین کسی باشید که نظری می نویسد “Java EE 5TM Introduction”

Java EE 5TM Introduction

اسلاید 1: v100830Intro to JavaEE1Java EE 5TM Introduction

اسلاید 2: v100830Intro to JavaEE2GoalsBecome familiar with the Java EE ArchitectureUnderstand the purpose of Java SE, Java ME, and Java EEUnderstand the purpose of each Java EE ContainerUnderstand the purpose of each Java EE APIUnderstand the difference between an API and ProviderUnderstand there are significant variations in Java EE architectures

اسلاید 3: v100830Intro to JavaEE3Java Technology LevelsJava Platform, Standard EditionJava SE (J2SE)core languageJava Platform, Micro EditionJava ME (J2ME)targeted at small devicesPDAscell phonesJava Platform, Enterprise EditionJava EE (J2EE)targeted at enterprise deploymentspersistencedistributed systemsweb-based applicationstransactionssecurityNote: Java Technology has gone through a recent name change. J2SE 5.0 stayed J2SE 5.0 J2SE 6.0 is called Java SE 6 J2EE 5.0 became Java EE 5 J2ME will become Java ME

اسلاید 4: v100830Intro to JavaEE4Java EE Architecture

اسلاید 5: v100830Intro to JavaEE5Java EE ArchitectureDoes not imply physical partitioning into machines, processes, etc.No “all or nothing” requirementuse what you need

اسلاید 6: v100830Intro to JavaEE6ContainersProvide Java EE runtime environments with J2SE v5.0Provide required services to application componentsexample services: JMS, JTAapplication components: Applets, Java applications, Servlets/JSPs, and EJBsUnderstand application component deployment formatsInterposes between application components to transparently inject services requiredtransactions, security checks, resource poolingSynonymous with application server from the application developer point of view

اسلاید 7: v100830Intro to JavaEE7Application ComponentsApplication ClientJava programs that execute outside of the EJB, Web, and Applet ContainersTypically GUI-basedAppletsGUI componentstypically execute in Web browserWeb Applicationsaccessed through HTTPprimarily generate HTML and XML outputServlets, JSPs, JSF, etc.Enterprise Java Beans (EJB) execute in managed environment that include transactionstypically provide business logic for Java EE application

اسلاید 8: v100830Intro to JavaEE8Resource AdaptersSystem-level software componentExtends functionality of ContainerProvides connectivity with external resource managers or native language componentsImplement existing (e.g., JDBC, JMS) or alternate APIsPlugin into Java EE environment to provide system-level support forResource PoolingTransactionsSecurity

اسلاید 9: v100830Intro to JavaEE9Standard ServicesCommunications ServicesHTTPJ2SE java.net package defines client-side APIJava EE defines server-side API defined within servlet, JSP, JSF, and Web service interfacesHTTPSuse of HTTP over SSL for transport level securityJava Message Service (JMS)API for messagingsupport for publish-subscribe and point-to-point

اسلاید 10: v100830Intro to JavaEE10CORBA Support ServicesRMI-IIOPAPIs (javax.rmi) to allow RMI-style programming independent of underlying protocolJ2SE native RMI Protocol (JRMP)CORBA IIOP protocolPermit Java EE application components to access CORBA services compatible with RMI programming restrictionsPermit CORBA clients to access EJB componentsUsing dependency injection versus JNDI lookup eliminates the need for applications to use most of APIJava IDLPermit Java EE application components to invoke CORBA services, independent of the RMI API

اسلاید 11: v100830Intro to JavaEE11Coordination ServicesJava Naming and Directory Interface (JNDI)API for naming and directory accessJava Transaction API (JTA)application-level API to demarcate transaction boundariesprovider-level API between transaction and resource managers

اسلاید 12: v100830Intro to JavaEE12Persistence ServicesJava Database Connectivity (JDBC) APIAPI for connectivity with relational databasesJava Persistence APIAPI for managing persistence and object/relational mappingRequired in Java EECan be used in J2SE environments (is part of Java SE 6)

اسلاید 13: v100830Intro to JavaEE13XML and Web Service ServicesJava API for XML Processing (JAXP)integrated API support for separate SAX, DOM, and StAX (Streaming API for XML) XML parsing APIsXSLT transform enginesJava API for XML-based RPC (JAX-RPC)legacy API for Web servicesJava API for XML Web Services (JAX-WS)follow-on to JAX-RPCprimary API for Web servicesincludes SOAP and RESTful Web service bindingsuses Java Architecture for XML Binding (JAXB) to define Java to XML bindingsuses SOAP w/ Attachments API for Java (SAAJ) to manipulate low level SOAP msgsWeb Services Metadatadefines Java language annotations for developing Web servicesJava API for XML Registries (JAXR) API for client access to XML registry servers

اسلاید 14: v100830Intro to JavaEE14Security ServicesJava Authentication and Authorization Service (JAAS)enables services to authenticate and enforce access controlsJava implementation of standard Plugable Authentication Module (PAM)Java Authorization Service Provider Contract for Containers (JACC)defines contract between Java EE application server and authorization service provider

اسلاید 15: v100830Intro to JavaEE15System ServicesJava EE Connector Architecture (was J2CA)provider-level interface for Resource Adapters to integrate Enterprise Information Systems into Java EE servers.connection managementresource poolingtransaction managementintegrate transactions across multiple resource managersimport transaction contexts into serversecurity accessthread managementallows resource adapter to allocate server threads for workmessage deliveryintegrate any messaging provider; not just JMSoptional, generic API between application program and resource adapter

اسلاید 16: v100830Intro to JavaEE16Management/Deployment ServicesManagementDefines API for managing Java EE serversUses Java Management Extensions (JMX) APIDeploymentDefines API between deployment tools and Java EE products

اسلاید 17: v100830Intro to JavaEE17Other ServicesJavaMail API and service provider for sending e-mail notificationsJavaBeans Activation Framework (JAF)API for handling MIME types

اسلاید 18: v100830Intro to JavaEE18Java EE 5 APIs and VersionsJ2SE v5.0JDBC, JNDI, RMIJava Persistence 1.0Common Annotations 1.0EJB3.0JMS 1.1JTA 1.1Servlet 2.5JSP 2.1StAX 1.0Web Services 1.2Web Services Metadata 2.0JAX-WS 2.0JAX-RPC 1.1SAAJ 1.3JAXR 1.0JSTL 1.2JSF 1.2JSP Debugging 1.0Java EE Management 1.1Java EE Deployment 1.2JACC 1.1Connector 1.5JavaMail 1.4JAF 1.1

اسلاید 19: v100830Intro to JavaEE19Java EE Product ExtensionsJava EE products may supply implementations, in any form, for supplied Java EE APIsdifferent QOS, sizing, scaling, performance, cost, etc.Java EE products may provide additional APIs and protocols as extensionsJava EE products may not add classes to Java API packages or change any properties of an existing Java API classes.Application use of product extensions is non-portable across Java EE products

اسلاید 20: v100830Intro to JavaEE20Java EE RolesJava EE Product Providervendor (e.g., Sun, JBoss, BEA, IBM) Application Component ProviderJava, HTML, etc. developerApplication Assemblerintegrates components into an applicationDeployerintegrates application with resources of the runtimeSystem Administratormonitors and tunes application after deploymentTool Providerex. Maven Cargo pluginSystem Component Providerex. external JMS provider

اسلاید 21: v100830Intro to JavaEE21Java EE Release HighlightsJ2EE 1.3Connector APIEJB (2.x) local interfaces and new CMP modelJ2EE 1.4“Web services”Management, Deployment, JAASJava EE 5“Ease of Development”AnnotationsDependency InjectionBetter defaultsJava Persistance API, StAX, JAX-WSJava EE 6Profiles; making some components optionalMore “Ease of Development”

اسلاید 22: v100830Intro to JavaEE22Summary

اسلاید 23: v100830Intro to JavaEE23ReferencesJavaTM Platform, Enterprise Edition 5 (Java EE 5) Specification (http://jcp.org/en/jsr/detail?id=244)

18,000 تومان

خرید پاورپوینت توسط کلیه کارت‌های شتاب امکان‌پذیر است و بلافاصله پس از خرید، لینک دانلود پاورپوینت در اختیار شما قرار خواهد گرفت.

در صورت عدم رضایت سفارش برگشت و وجه به حساب شما برگشت داده خواهد شد.

در صورت نیاز با شماره 09353405883 در واتساپ، ایتا و روبیکا تماس بگیرید.

افزودن به سبد خرید