Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
  • 1
    Book
    Book
    Bonn :Galileo-Press,
    UID:
    almahu_BV019360452
    Format: 462 S. : , Ill., graph. Darst.
    Edition: 1. Aufl.
    ISBN: 3-89842-420-0
    Series Statement: Galileo-Computing
    Language: German
    Subjects: Computer Science
    RVK:
    Keywords: Enterprise JavaBeans 2.1
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    Book
    Book
    Beijing [u.a.] :O'Reilly,
    UID:
    almafu_BV013994389
    Format: XVI, 477 Seiten : , Ill., graph. Darst.
    Edition: Korrigierter Nachdruck, deutsche Ausgabe der 2. Auflage
    ISBN: 3-89721-192-0
    Uniform Title: Enterprise JavaBeans
    Language: German
    Subjects: Computer Science
    RVK:
    RVK:
    Keywords: Enterprise JavaBeans 1.0 ; Enterprise JavaBeans 1.1 ; Enterprise JavaBeans 2.0 ; Enterprise JavaBeans 2.1 ; JBoss 4.0 ; Java Beans ; Java ; Rechnernetz
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    Online Resource
    Online Resource
    Amsterdam ; : Elsevier,
    UID:
    almahu_9948026511002882
    Format: 1 online resource (194 p.)
    ISBN: 1-281-01504-0 , 9786611015046 , 0-08-049595-8
    Series Statement: The Practical Guides
    Content: JavaServer Pages (JSP) is a technology for building dynamic web applications that can access databases and provide an interactive experience for users. It's a powerful technology with open source implementations (server and platform independent) for building enterprise Web applications. With JSP, existing business systems can be leveraged with minimal overhead, maintenance, and support. JSP: Practical Guide for Java Programmers is designed to cover the essentials of JSP including the basic JSP constructs and the relevant implicit objects as well as more advanced concepts such as incorporatin
    Note: Description based upon print version of record. , Front Cover; Practical Guide to JavaServer Pages; Copyright Page; Contents; Preface; Chapter 1. Introduction to JavaServer Pages; 1.1 Introduction to Web Applications; 1.2 Getting Started with JavaServer Pages; Exercises; Chapter 2. The Fundamentals of JavaServer Pages; 2.1 Directives; 2.2 JSP Declarations; 2.3 Expressions; 2.4 Scriptlets; 2.5 Comments; 2.6 Scope; 2.7 Implicit Objects; 2.8 Standard Actions; Exercises; Chapter 3. JavaBeans and Forms; 3.1 HTML Forms; 3.2 JavaBeans; 3.3 Simple Web Application; Exercises; Chapter 4. Expression Language; 4.1 EL Overview; 4.2 EL and JavaBeans , 4.3 EL and Collections4.4 Functions; Exercises; Chapter 5. The Standard Tag Library; 5.1 Core Tags; 5.2 Formatting Tags; 5.3 XML Tags; 5.4 SQL Tags; Exercises; Chapter 6. Custom Actions; 6.1 Tag Overview; 6.2 Tag Files; 6.3 Simple Tag Handlers; 6.4 Classic Tag Handlers; Exercises; Chapter 7. Building a Web Application; 7.1 Java Servlet Technology; 7.2 Ancillary Web-Application Technologies; 7.3 Security; Exercises; A. Tool Installation; A.1 Installing Tomcat; A.2 Installing the Example Code; A.3 Installing the JSP Standard Tag Library; A.4 Installing MySQL; B. Further Resources , B.1 The World Wide WebB.2 Java; B.3 Java Servlets; B.4 JavaServer Pages; B.5 The JSP Standard Tag Library; B.6 Databases and JDBC; B.7 Internationalization and Localization; B.8 Security; B.9 Web Applications; Index , English
    Additional Edition: ISBN 1-55860-836-2
    Language: English
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    San Francisco, Calif. :Morgan Kaufmann,
    UID:
    almahu_9948026131902882
    Format: 1 online resource (397 p.)
    Edition: 1st edition
    ISBN: 1-281-04802-X , 9786611048020 , 0-08-052017-0
    Series Statement: The Morgan Kaufmann Series in Software Engineering and Programming
    Content: Software testing is indispensable and is one of the most discussed topics in software development today. Many companies address this issue by assigning a dedicated software testing phase towards the end of their development cycle. However, quality cannot be tested into a buggy application. Early and continuous unit testing has been shown to be crucial for high quality software and low defect rates. Yet current books on testing ignore the developer's point of view and give little guidance on how to bring the overwhelming amount of testing theory into practice. Unit Testing in Java repres
    Note: Description based upon print version of record. , Front Cover; Unit Testing in Java: How Tests Drive the Code; Copyright Page; Foreword; Contents; Preface; Part l: Basic Techniques; Chapter 1. Introduction; 1.1 Important Terms; 1.2 XP Testing; 1.3 Classic Testing; 1.4 Test-First Development-A Brief Definition; 1.5 Java Only-Or Other Coffee?; 1.6 Objectives of This Book; 1.7 Organization of This Book; 1.8 Conventions in This Book; 1.9 Web Site to This Book; Chapter 2. Automating Unit Tests; 2.1 What Do We Want to Automate?; 2.2 Requirements for an Automation Framework; 2.3 JUnit; 2.4 Summary , Chapter 3. Basic Steps of the Test-First Approach3.1 Step by Step; 3.2 Dependencies; 3.3 Organizing and Running Tests; 3.4 Summary; Chapter 4. Test Ideas and Heuristics; 4.l Reworking Single Tests; 4.2 Black and White Boxes; 4.3 Testing the Typical Functionality; 4.4 Threshold Values and Equivalence Classes; 4.5 Error Cases and Exceptions; 4.6 Object Interactions; 4.7 Design by Contract; 4.8 More Ideas to Find Test Cases; 4.9 Refactoring Code and Tests; 4.10 Summary; Chapter 5. The Inner Life of a Test Framework; 5.1 Statics; 5.2 The Life Cycle of a Test Suite; 5.3 Project-Specific Expansions , 5.4 SummaryChapter 6. Dummy and Mock Objects for Independence; 6.1 Little Dummies; 6.2 Weltering in Technical Terms; 6.3 Big Dummies; 6.4 Extending Our Mansion; 6.5 Endoscopic Testing; 6.6 Mock Objects from the Assembly Line; 6.7 Testing Threshold Values and Exceptions; 6.8 How Does the Test Get to the Mock?; 6.9 Evil Singletons; 6.10 Lightweight and Heavyweight Mocks; 6.11 File Dummies; 6.12 More Typical Mock Objects; 6.13 External Components; 6.14 The Pros and Cons; 6.15 Summary; Chapter 7. Inheritance and Polymorphism; 7.1 Inheritance; 7.2 Polymorphism; 7.3 Summary , Chapter 8. How Much Is Enough?8.1 The XP Rule; 8.2 Clear Answers to Clear Questions; 8.3 Test Coverage; 8.4 Summary; Part II: Advanced Topics; Chapter 9. Persistent Objects; 9.1 Abstract Persistence Interface; 9.2 Persistent Dummy; 9.3 Designing a Database Interface; 9.4 Testing the""Right"" Persistence; 9.5 Interaction between Persistence Layer and Client; 9.6 Summary; Chapter 10. Concurrent Programs; 10.1 Problems Using Threads; 10.2 Testing Asynchronous Services; 10.3 Testing for Synchronization; 10.4 Summary; Chapter 11. Distributed Applications; 11.1 RMI; 11.2 Enterprise JavaBeans , 11.3 SummaryChapter 12. Web Applications; 12.1 Functional Tests; 12.2 Testing on the Server; 12.3 Testing with Dummies; 12.4 Separating the Servlet API from the Servlet Logic; 12.5 Testing the HTML Generation; 12.6 Summary; Chapter 13. Graphical User Interfaces; 13.1 The Direct Way; 13.2 Short Detours; 13.3 Summary; Chapter 14. The Role of Unit Tests in the Software Process; 14.1 Activities in the Defined Software Process; 14.2 Process Types and Testing Strategies; 14.3 Costs and Benefits of Automated Unit Tests; 14.4 Commercial Process Models , 14.5 Will Automated Unit Tests Fit in My Process? , English
    Additional Edition: ISBN 1-55860-868-0
    Language: English
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Online Resource
    Online Resource
    Boston :Morgan Kaufmann Publishers,
    UID:
    almahu_9948026129802882
    Format: 1 online resource (153 p.)
    Edition: 1st ed.
    ISBN: 9786612284861 , 1-282-28486-X , 0-08-051901-6 , 0-585-44994-5
    Series Statement: Morgan Kaufmann practical guides series
    Content: Struts is an open-source framework that integrates with standard Java technologies and lets developers build web applications quickly and effectively. In much the same way that Java has overtaken C++, Struts is well poised to become the framework for web application development because of its ability to address the types of issues engineers face when building large-scale web applications. The Struts Framework: Practical Guide for Java Programmers meets the needs of this large audience--estimated today at 2.5 million Java programmers and growing. It provides the s
    Note: Description based upon print version of record. , Front Cover; The Struts Framework: Practical Guide for Java Programmers; Copyright Page; Contents; Preface; Chapter 1. Struts and Enterprise Web Technologies; 1.1 Technology Stew; 1.2 Model-View-Controller; 1.3 Introduction to Struts; 1.4 Moving On; Chapter 2. Framework Components Overview; 2.1 Controlling Flow with the ActionServlet Component; 2.2 Working with the Model Components; 2.3 View Components; 2.4 Summary; Chapter 3. Struts Development Plan; 3.1 The Premise; 3.2 Identify the Applicability; 3.3 Ten-Step Development Program; 3.4 Gather and Define the Application Requirements , 3.5 Define and Develop Each Screen Requirement3.6 Determine All the Access Paths for Each Screen; 3.7 Define the ActionMappings; 3.8 Create the ActionForms; 3.9 Develop Actions; 3.10 Develop the Application Business Logic; 3.11 Create JSPs; 3.12 Build the Appropriate Configuration Files; 3.13 Build, Test, Deploy; 3.14 Summary; Chapter 4. Creating and Building Actions; 4.1 Creating an Action; 4.2 Execute Method; 4.3 Execution Steps in Execute; 4.4 When Bad Things Happen to Good Actions; 4.5 Handling Tokens; 4.6 Design Rules of Thumb; 4.7 Summary; Chapter 5. Creating and Building ActionForms , 5.1 Defining ActionForms5.2 ActionForm validate() method; 5.3 ActionForm reset() Method; 5.4 Design Rules of Thumb; 5.5 Wizards, and We're Not Talking Oz; 5.6 Other Wizard Variations; 5.7 DynaActionForms; 5.8 Summary; Chapter 6. Configuring Struts; 6.1 Web.xml; 6.2 Struts-config.xml; 6.3 Summary; Chapter 7. Building Struts-Enabled JSPs; 7.1 Setting Up a JSP; 7.2 Taglib Definitions; 7.3 Summary; Chapter 8. Working with the Struts Custom Tag Libraries; 8.1 When Tags Throw Exceptions; 8.2 Using Property Referencing; 8.3 Using the Struts-html Tag Library; 8.4 Using the Struts-bean Tag Library , 8.5 Using the Struts-logic Tag Library8.6 Using the Struts-nested Tag Library; 8.7 Using the Struts-template Tags; 8.8 Summary; Chapter 9. Internationalizing Your Struts Application; 9.1 However You Say It: Hello, Bon Jour, Hola, Ni Hao; 9.2 UTF-8; 9.3 Locales; 9.4 PropertyResourceBundles; 9.5 Formatted Messages; 9.6 The MessageResources Class; 9.7 Summary; Chapter 10. Configuring, Testing, and Rolling out Your Application; 10.1 The WAR File; 10.2 Building to Deploy; 10.3 Jar Files; 10.4 Using Logging for Debugging; 10.5 Unit Testing; 10.6 Maintaining Your Application; 10.7 Summary , Chapter 11. Additional Useful Struts Packages and Extensions11.1 Tiles; 11.2 Validator; 11.3 Uploading Files; 11.4 Commons Utilities; 11.5 Workflow; 11.6 Other Items of Interest; 11.7 Summary; 11.8 Closing Thoughts; A Struts 1.1 UML Diagram; B Web Resources; B. 1 Development Tools; B.2 Design Patterns; B.3 EJB; B.4 JavaBeans; B.5 JSP/Servlets; B.6 Helpful Tools and Resources; B.7 I18N; B.8 Logging and Testing; B.9 MVC; B. 10 Sample Application; B.ll Struts Extensions; B.12 Struts Mailing List; B.13 UML; B.14 Upcoming Technologies; B.15 XML; Index , English
    Additional Edition: ISBN 1-55860-862-1
    Language: English
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    UID:
    b3kat_BV021496359
    Format: XII, 372 S. , graph. Darst.
    ISBN: 3937137106
    Series Statement: IT lernen
    Note: Literaturverz. S. 367 - 369
    Language: German
    Subjects: Computer Science
    RVK:
    Keywords: Java 2 Enterprise Edition ; Enterprise JavaBeans 2.1 ; Enterprise JavaBeans 3.0
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    Book
    Book
    Heidelberg [u.a.] :Spektrum, Akad. Verl.,
    UID:
    almahu_BV014605608
    Format: IX, 454 S. : , Ill., graph. Darst.
    ISBN: 3-8274-1322-2
    Later: 2. Aufl. u.d.T. Backschat, Martin Enterprise JavaBeans 3.0
    Language: German
    Subjects: Computer Science
    RVK:
    Keywords: Enterprise JavaBeans 2.0
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    Book
    Book
    Beijing ; Cambridge ; Farnham ; Köln ; Paris ; Sebastopol ; Taip : O'Reilly
    UID:
    b3kat_BV012728067
    Format: XVI, 317 S. , graph. Darst.
    Edition: 1. ed.
    ISBN: 1565926056
    Series Statement: The Java series
    Language: German
    Subjects: Computer Science
    RVK:
    Keywords: Java Beans ; Enterprise JavaBeans 1.1 ; Enterprise JavaBeans 2.0 ; Enterprise JavaBeans 1.0 ; Enterprise JavaBeans 2.1 ; JBoss 4.0 ; Java ; Rechnernetz
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    UID:
    b3kat_BV041383158
    Format: 1 Online-Ressource (376 p.)
    ISBN: 9783864913464
    Note: Description based upon print version of record , Hauptbeschreibung Dieses Arbeitsbuch bietet eine praktische Einführung in die Entwicklung von Business-Anwendungen mit Java EE 7. Schrittweise erstellen Sie eine einfach nachvollziehbare Beispielanwendung auf Grundlage des Web Profile. Dabei lernen Sie alle wichtigen Technologien und Konzepte von Java EE 7 kennen, u.a.: JavaServer Faces, Managed Beans, CDI und EJB Lite, JPA sowie Interceptors, Transaktionen und Security. Nach der erfolgreichen Lektüre sind Sie in der Lage, Java-EE-7-Anwendungen von Grund auf neu aufzusetzen, zu entwickeln und auf einem Anwendungsserver zu verteilen , Vorwort; Für wen ist das Buch?; Java EE 7; Zusatzinformationen zum Buch; Aufbau des Buches; Inhaltsübersicht; Inhaltsverzeichnis; 1 Ein Einstieg mit Profil; 1.1 Java EE 7 - der Standard für Enterprise Java; 1.1.1 Struktur einer Enterprise-Java-Anwendung; 1.1.2 Die Java Enterprise Edition (Java EE); 1.1.3 Anatomie einer Java-EE-Anwendung; 1.2 Die Komponentenarchitektur von Java EE 7; 1.2.1 Die Komponenten der Webschicht; JavaServer Pages; JavaServer Faces; 1.2.2 CDI - ein Komponententyp mit viel Potenzial; 1.2.3 Enterprise JavaBeans; 1.2.4 Java Persistence API (JPA); 1.2.5 Die Java-EE-Profile , 1.2.6 Und ab geht's auf den Applikationsserver!1.3 Die Zielarchitektur; 1.4 Wie geht es jetzt weiter?; 1.5 Weiterführende Literatur; 2 Aufsetzen der Entwicklungsumgebung; 2.1 Werkzeuge und Server für Java EE; 2.2 Installation der nötigen Softwarepakete; Tab. 2-1 Benötigte Softwarepakete und ihre Internetquellen; 2.2.1 Installation von Java SE; 2.2.2 Installation von Maven 3; 2.2.3 Installation von JBoss AS 7.1.1; 2.3 Vom Projekt zur ausgeführten Webanwendung; 2.3.1 Anlegen eines leeren Java-EE-6-Webprojektes mit Maven; 2.3.2 Der erste Build und das erste Deployment; 2.3.3 Test des Deployments , 2.4 Eclipse Juno - mehr als ein Texteditor2.4.1 Installation von Eclipse; 2.4.2 Eclipse-Plug-in m2e; 2.4.3 Import von Maven-Projekten; 2.4.4 Das Deployment; 2.5 Weitere Werkzeuge des Workshops; 2.6 Weiterführende Literatur; 3 Fachlichkeit der Beispielanwendungen »My-Aktion« und »My-Aktion-Monitor«; 3.1 Einleitung; 3.2 Übersicht der Anwendungsfälle; 3.3 Fachklassen; 3.4 Anwendungsfälle; 3.4.1 Anmeldung notwendig; 3.4.2 Aktionen anzeigen und bearbeiten; 3.4.3 Spendenformular bearbeiten; 3.4.4 Spendenliste anzeigen; 3.4.5 Aktion bearbeiten; 3.4.6 Aktion löschen; 3.4.7 Neue Aktion anlegen , 3.4.8 Aktionsdaten editieren3.4.9 Geld spenden; 3.4.10 Reduzierte Spendenliste anzeigen; 3.5 Weiterführende Literatur; 4 Iteration Nr. 1 - JavaServer Faces; 4.1 Einleitung; 4.2 Fachklassen als JavaBeans; 4.2.1 Konto; 4.2.2 Spende; Listing 4-2 Klasse Spende; 4.2.3 Aktion; 4.3 Das Vorlagensystem; 4.3.1 Templating mit Facelets; 4.3.2 Ein Template für My-Aktion; XHTML-Template; Cascading Style Sheet (CSS); Das Template im Einsatz; 4.4 Der Anwendungsfall »Aktionen anzeigen und bearbeiten«; 4.4.1 Die Backing Beans; Die @Named-Annotation; Der Sichtbarkeitsbereich @SessionScoped , Die Klasse AktionListControllerDie Klasse AktionListProducer; 4.4.2 JSF-Technologien für den ersten Anwendungsfall; Expression Language; UI-Komponenten; Formular-Komponente; Links- und Schaltflächen-Komponente; Ausgabetext-Komponente; Komponente zur Formatierung von Zahlen; Datentabellen-Komponente; 4.4.3 Unsere erste View!; 4.4.4 Der Start - ein erster Meilenstein; Ein bequemer Einstieg in My-Aktion; 4.5 Weitere JSF- und Java-EE-Technologien; 4.5.1 @Inject-Annotation; 4.5.2 Texteingabe mit Validierung, Konvertierung und Fehlermeldungen; Validierung; Konverter; Fehlermeldungen , 4.5.3 Das Rasterlayout von UI-Komponenten
    Language: German
    Keywords: Java EE 7
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 10
    Online Resource
    Online Resource
    Frankfurt am Main : entwickler.press
    UID:
    kobvindex_ERBEBC4687689
    Format: 1 online resource (311 pages)
    ISBN: 9783868026801
    Note: Intro -- Vorwort -- 1 Java EE im Überblick -- 1.1 Aufgabenstellung -- 1.2 Architekturmodell -- 1.3 Anwendungsbestandteile und Formate -- 1.4 Profile -- 1.5 Plattformen -- 2 CDI -- 2.1 Was ist das? -- 2.2 Wozu braucht man das? -- 2.3 Bereitstellung und Injektion von Beans -- 2.3.1 CDI Beans -- 2.3.2 Field Injection -- 2.3.3 Bean Type -- 2.3.4 Method Injection -- 2.3.5 Constructor Injection -- 2.3.6 Bean Name -- 2.3.7 Bean Scan -- 2.4 Lifecycle Callbacks -- 2.5 Qualifier -- 2.6 Alternatives -- 2.7 Nutzung der Java-EE-Umgebung -- 2.7.1 Java EE Resources -- 2.7.2 Built-in Beans -- 2.8 Producer und Disposer -- 2.8.1 Producer Methods -- 2.8.2 Producer Fields -- 2.8.3 Disposer Methods -- 2.8.4 Introspektion des Injektionsziels -- 2.9 Kontexte und Scopes -- 2.9.1 Request Scope -- 2.9.2 Session Scope -- 2.9.3 Application Scope -- 2.9.4 Conversation Scope -- 2.9.5 Bean Proxies -- 2.9.6 Dependent Scope -- 2.9.7 Qualifier @New -- 2.9.8 Transaction Scope -- 2.10 Interceptors -- 2.10.1 Interceptor Class -- 2.10.2 Interceptor Binding -- 2.10.3 Aktivierung eines Interceptors -- 2.10.4 Transaktions-Interceptor -- 2.11 Decorators -- 2.11.1 Decorator Class -- 2.11.2 Aktivierung eines Decorators -- 2.12 Stereotypes -- 2.13 Eventverarbeitung -- 2.13.1 Events erzeugen -- 2.13.2 Events verarbeiten -- 2.14 Programmgesteuerter Zugriff auf CDI Beans -- 2.14.1 Injektion von Bean-Instanzen -- 2.14.2 Bean Manager -- 2.15 Integration von JPA, EJB und JSF -- 2.16 Portable Extensions -- 2.16.1 Entwicklung eigener Extensions -- 2.16.2 Verfügbare Extensions -- 2.17 CDI in SE-Umgebungen -- 3 Java Persistence -- 3.1 Worum geht es? -- 3.1.1 Lösungsansätze -- 3.1.2 Anforderungen an O/R Mapper -- 3.1.3 Entwicklung des Standards -- 3.1.4 Architektur von Anwendungen auf Basis von JPA -- 3.2 Die Basics -- 3.2.1 Entity-Klassen -- 3.2.2 Konfiguration der Persistence Unit -- 3.2.3 CRUD , 3.2.4 Detached Objects -- 3.2.5 Entity-Lebenszyklus -- 3.2.6 Mapping-Annotationen für einfache Objekte -- 3.2.7 Custom Converter -- 3.2.8 Generierte IDs -- 3.2.9 Objektgleichheit -- 3.2.10 Basisklassen für Entity-übergreifende Aspekte -- 3.3 Objektrelationen -- 3.3.1 Unidirektionale n:1-Relationen -- 3.3.2 Unidirektionale 1:n-Relationen -- 3.3.3 Bidirektionale 1:n-Relationen -- 3.3.4 Uni- und bidirektionale 1:1-Relationen -- 3.3.5 Uni- und bidirektionale n:m-Relationen -- 3.3.6 Eager und Lazy Loading -- 3.3.7 Entity Graphs -- 3.3.8 Kaskadieren -- 3.3.9 Orphan Removal -- 3.3.10 Anordnung von Relationselementen -- 3.4 Queries -- 3.4.1 JPQL -- 3.4.2 Native Queries -- 3.4.3 Criteria Queries -- 3.5 Vererbungsbeziehungen -- 3.5.1 Mapping-Strategie „SINGLE_TABLE" -- 3.5.2 Mapping-Strategie „TABLE_PER_CLASS" -- 3.5.3 Mapping-Strategie „JOINED" -- 3.5.4 Non-Entity-Basisklassen -- 3.5.5 Polymorphe Queries -- 3.6 Dies und das -- 3.6.1 Secondary Tables -- 3.6.2 Zusammengesetzte IDs -- 3.6.3 Dependent IDs -- 3.6.4 Locking -- 3.6.5 Callback-Methoden und Listener -- 3.6.6 Bulk Update/Delete -- 3.7 Caching -- 3.8 Erweiterte Entity Manager -- 3.8.1 Extended Entity Manager -- 3.8.2 Application-managed Entity Manager -- 3.9 Java Persistence in SE-Anwendungen -- 3.9.1 Konfiguration der Persistence Unit im SE-Umfeld -- 3.9.2 Erzeugung eines Entity Managers in SE-Anwendungen -- 3.9.3 Transaktionssteuerung in Java-SE-Anwendungen -- 3.9.4 Schema-Generierung -- 4 Bean Validation -- 4.1 Aufgabenstellung -- 4.2 Plattformen und benötigte Bibliotheken -- 4.3 Validation Constraints -- 4.3.1 Attribute Constraints -- 4.3.2 Method Constraints -- 4.3.3 Vordefinierte Constraints -- 4.3.4 Transitive Gültigkeit -- 4.3.5 Constraint Composition -- 4.3.6 Constraint Programming -- 4.4 Objektprüfung -- 4.5 Internationalisierung der Validierungsmeldungen -- 4.6 Validierungsgruppen , 4.7 Integration in JPA, CDI und JSF -- 4.8 Bean Validation in SE-Umgebungen -- 5 JavaServer Faces -- 5.1 Einsatzzweck von JSF -- 5.2 Die Basis: Java-Webanwendungen -- 5.2.1 Grundlegender Aufbau -- 5.2.2 Servlets -- 5.2.3 JavaServer Pages -- 5.3 JSF im Überblick -- 5.3.1 Model View Controller -- 5.3.2 Facelets -- 5.3.3 Request-Verarbeitung -- 5.4 Konfiguration der Webanwendung -- 5.5 Benötigte Bibliotheken und Plattformen -- 5.6 Programmierung der Views -- 5.6.1 JSF-Tag-Libraries -- 5.7 Managed Beans -- 5.8 Unified Expression Language -- 5.8.1 Methodenbindung -- 5.8.2 Wertebindung -- 5.8.3 Vordefinierte Variablen -- 5.8.4 Arithmetische Ausdrücke -- 5.9 Navigation -- 5.9.1 Regelbasierte Navigation -- 5.9.2 Inline-Navigation -- 5.9.3 Programmgesteuerte Navigation -- 5.10 Scopes -- 5.11 Verarbeitung tabellarischer Daten -- 5.12 Internationalisierung -- 5.12.1 Locale -- 5.12.2 Resource Bundles -- 5.12.3 Programmgesteuerter Zugriff auf Texte -- 5.13 Ressourcenverwaltung -- 5.13.1 Internationalisierung von Ressourcen -- 5.14 GET Support -- 5.14.1 Verarbeitung von GET-Request-Parametern -- 5.14.2 Erzeugung von GET-Requests -- 5.15 Eventverarbeitung -- 5.15.1 Faces Events -- 5.15.2 Phase Events -- 5.15.3 System Events -- 5.16 Konvertierung -- 5.16.1 Vordefinierte Konverter -- 5.16.2 Custom Converter -- 5.16.3 Ausgabe von Konverter- oder Validierungsmeldungen -- 5.17 Validierung -- 5.17.1 Validierung von Eingabewerten -- 5.17.2 Feldübergreifende Validierung -- 5.18 Immediate-Komponenten -- 5.18.1 „immediate" für Eingabekomponenten -- 5.18.2 „immediate" für Aktionskomponenten -- 5.19 AJAX -- 5.19.1 AJAX für Aktionselemente -- 5.19.2 AJAX-Events -- 5.19.3 AJAX-Callbacks -- 5.19.4 JavaScript API -- 5.20 Templating mit Facelets -- 5.20.1 Template -- 5.20.2 Template Client -- 5.20.3 Mehrstufige Templates -- 5.20.4 Mehrere Templates pro Seite , 5.21 Eigene JSF-Komponenten -- 5.21.1 Composite Components -- 5.21.2 Composite Components mit Backing Beans -- 5.22 Faces Flows -- 5.22.1 Einfache, konventionsbasierte Flows -- 5.22.2 Deskriptorbasierte Flows -- 5.22.3 Producer-basierte Flows -- 5.22.4 Flow Scope -- 5.22.5 Extern definierte Flows -- 5.23 Resource Library Contracts -- 5.24 Exception Handling -- 5.25 Komponentenbibliotheken -- 5.26 Security -- 5.26.1 Log-in-Konfiguration -- 5.26.2 Securityrollen -- 5.26.3 Zugriffsregeln -- 6 Enterprise JavaBeans -- 6.1 Aufgabenstellung -- 6.2 Aufbau von Enterprise JavaBeans -- 6.2.1 EJB-Typen -- 6.2.2 EJB Lifecycle -- 6.3 EJB Deployment -- 6.4 Lokaler Zugriff auf Session Beans -- 6.4.1 Local Interface -- 6.4.2 No-Interface View -- 6.5 Remote-Zugriff -- 6.5.1 Remote Interface -- 6.5.2 Eintrag von EJBs im Namensdienst des Servers -- 6.5.3 Remote Lookup und clientseitige Nutzung von EJBs -- 6.6 Transaktionssteuerung -- 6.6.1 Transaction Management und Transaction Attribute -- 6.6.2 Application und System Exceptions -- 6.6.3 @Transactional vs. EJB Transactions -- 6.7 Asynchrone Methoden -- 6.8 Timer -- 6.9 Security -- 6.9.1 Deklarative Security -- 6.9.2 Programmgestützte Security -- 7 RESTful Web Services -- 7.1 Hintergrund -- 7.2 REST-Prinzipien -- 7.3 JAX-RS -- 7.3.1 REST Application -- 7.3.2 Ressourcen -- 7.3.3 GET -- 7.3.4 PUT -- 7.3.5 POST -- 7.3.6 DELETE -- 7.3.7 Extended Path Expressions -- 7.3.8 Parameter-Injection -- 7.3.9 Subresource Locators -- 7.3.10 Entity Provider -- 7.3.11 Content Negotiation -- 7.3.12 Exception Handling -- 7.3.13 Clients -- 8 Ein „Real World"-Projekt -- 8.1 Aufgabenstellung -- 8.2 Anwendungsarchitektur -- 8.3 Persistenz -- 8.4 Views -- 8.5 Fachliche Injektion -- Der Autor
    Additional Edition: Print version: Weil, Dirk Java EE 7 Frankfurt am Main : entwickler.press,c2015 ISBN 9783868021578
    Keywords: Electronic books.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. Further information can be found on the KOBV privacy pages