Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Java EE 7 Development with WildFly

You're reading from   Java EE 7 Development with WildFly Leverage the power of the WildFly application server from JBoss to develop modern Java EE 7 applications

Arrow left icon
Product type Paperback
Published in Dec 2014
Publisher
ISBN-13 9781782171980
Length 434 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Toc

Table of Contents (16) Chapters Close

Preface 1. Getting Started with WildFly FREE CHAPTER 2. Your First Java EE Application on WildFly 3. Introducing Java EE 7 – EJBs 4. Learning Context and Dependency Injection 5. Combining Persistence with CDI 6. Developing Applications with JBoss JMS Provider 7. Adding Web Services to Your Applications 8. Adding WebSockets 9. Managing the Application Server 10. Securing WildFly Applications 11. Clustering WildFly Applications 12. Long-term Tasks' Execution 13. Testing Your Applications A. Rapid Development Using JBoss Forge Index

Conventions

In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.

Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "After an MDB instance's onMessage() method returns, the request is complete, and the instance is placed back in the free pool."

A block of code is set as follows:

<jms-destinations>
   <jms-queue name="TicketQueue">
      <entry name="java:jboss/jms/queue/ticketQueue"/>
         <durable>false</durable>
   </jms-queue>
</jms-destinations>

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

@Stateless
public class SampleEJB {

    @Resource(mappedName = "java:/ConnectionFactory")
    private ConnectionFactory cf; 
}

Any command-line input or output is written as follows:

CREATE DATABASE ticketsystem;
CREATE USER jboss WITH PASSWORD 'jboss';
GRANT ALL PRIVILEGES ON DATABASE ticketsystem TO jboss;

New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes, for example, appear in the text like this: "For example, the Eclipse's File menu includes an option JPA Entities from Table that (once a connection has been set up to the database) allows reversing your DB schema (or part of it) into Java entities."

Note

Warnings or important notes appear in a box like this.

Tip

Tips and tricks appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image