Java EE eBooks on Leanpub

DZone Java Caching Refcard


-
Join 128 other subscribers
-
Recent Posts
- Basics of Kubernetes Volumes – Part 1 September 24, 2019
- Using Azure Disk to add persistent storage for your Kubernetes apps on Azure September 23, 2019
- “Kubernetes in a Nutshell” — blog series September 21, 2019
Categories
- Books (6)
- Caching (1)
- Cloud (7)
- Docker (5)
- Java (136)
- Knowledge (1)
- kubernetes (8)
- NoSQL (2)
- Oracle Cloud (5)
- Oracle Directory Services (1)
- Oracle Identity & Access Management (1)
- Oracle Identity Governance (12)
- Oracle Identity Manager (17)
- Oracle Priviledged Account MAnager (1)
- Oracle Privileged Account Manager (2)
- Oracle Unified Directory (1)
- Productivity (1)
- serverless (2)
- Uncategorized (2)
- Follow Head in the clouds on WordPress.com
Category Archives: Java EE
Github: WebSocket applications…
I recently pushed a couple of WebSocket samples to Github. Both are based around the notion of a chat service – a canonical WebSocket example! These were originally meant to serve as additional material to the Java WebSocket API Handbook in order … Continue reading
Quick tip: managing Stateful EJBs in WebSocket endpoints
@Stateful EJBs can be injected in WebSocket endpoints (supported by the WebSocket specification). There is an one-to-one association between the WebSocket client & endpoint (which is by default) as well as the injected Stateful EJB instance, which makes it an good candidate for storing … Continue reading
WebSocket endpoint as Singleton EJB
By default … … a WebSocket implementation creates a new (server) endpoint instance per client. In case you need a single instance, you can implement this using a custom ServerEndpointConfig.Configurator (by overriding the getEndpointInstance method) The catch: you might have to sacrifice some … Continue reading
New release: Java WebSocket API handbook
Happy to announce the initial release of the Java WebSocket API handbook. This is still a work in progress but moving at a strady pace. You can read this on Gitbook or grab your PDF/ePub/Mobi version from Leanpub Here is … Continue reading
Posted in Java, Java EE
Tagged ebook, gitbookleanpub, java, javaee, jr356, websocket
Leave a comment
(eBook) ‘REST assured with JAX-RS’ now available on Gitbook
You can now read REST assured with JAX-RS online on Gitbook, or grab the PDF from Leanpub.. Happy reading!
Using Asynchronous timeouts in the Java WebSocket API
Sending messages in an asynchronous manner avoid blocking the sending thread. This is a great where your solution needs to scale in order to support a large number of clients. But there is a limit on how long can we … Continue reading
Posted in Java, Java EE
Tagged asynchronous, javaee, javaee7, jsr356, timeouts, websocket
Leave a comment
Started a new blog: Simply Distributed
Hello readers! Happy to announce that I have recently initiated another blog – Simply Distributed. Some things to note about the blog it will revolve around topics in the Distributed Systems domain focus on real world distributed computing products & … Continue reading
Dynamic provider registration in JAX-RS
The DynamicFeature class in JAX-RS (2.0) allows you to register providers Dynamically i.e. without any pre-defined binding strategy (e.g. annotations) Based on criteria i.e. to help decide which provider to bind to which JAX-RS resource(s) The JAX-RS implementation detects and executes … Continue reading
Posted in Java, Java EE
Tagged dynamic registration, javaee, javaee7, JAX-RS 2.0, jsr339
Leave a comment
WebSocket and CDI integration.. again..
In one of my older blog posts, I had written about what does not work as far as WebSocket and CDI integration within the Java EE Platform 😉 This one talks about what’s possible with CDI in terms of Dependency Injection Interceptors … Continue reading
Integrating Oracle Application Container & Database Cloud using ‘Service Bindings’
Don’t forget to check out my new blog post on the Oracle Cloud Developer solutions community portal ! It demonstrates usage of Oracle Application Container Cloud and Database Cloud service. To be precise, it covers the following An introduction to Service … Continue reading
Posted in Java, Java EE, Oracle Application Container Cloud, Oracle Cloud, Oracle PaaS
Tagged eclipselink, jaxrs, Jersey, jpa, microservice, Oracle Cloud, Oracle Database Cloud, Oracle PaaS
Leave a comment
