Wildfly application server provides two modes of how to run application one wildfly application server. It is very simple if you run your application on a single server for one instance. But in case you are running your application on a cluster of server a cross multliple instances, managing those servers' instances could be quite challenging. In this case, Wildfly Application provide domain mode to run and manage application on multiple instances Read more
In this blog, I have put articles about how to set up a system and development environment to share my experience. I hope anyone to faces any issues in their work or project could get some answers from my blog. To be honest, I have many things I want to share many things, I just keep it in my bookmark. Hopefully, I could put together all of my articles into this blog and share it with you.
Monday, May 1, 2023
Saturday, December 10, 2022
Exception Handlering in Wildfly
Saturday, October 15, 2022
Wildfly JSF Richfaces Ajax Configuration
Java EE container as Wildfly provides dynamic Web UI components along within the package, for example JSP and JSF. Beside JSP, JSF provides MVC framework to give the structure of your application. JSF is very well designed Web interface tools, it glues web components via expression language (EL) and working very well with AJAX. Read More
Wednesday, October 5, 2022
Using In Memory Database H2 with Widlfly 23
Wednesday, October 13, 2021
Load balancing Web Application with HA Proxy
In previous post, I have demonstrated how to use NGINX as the load balancer to devide load between application servers. Beside NginX, another popular software load balancer is HAProxy. HAProxy supports for Layer 4 (TCP) and Layer 7 (HTTP) protocol for load balancing. Read more
Thursday, December 31, 2020
Real-Time Application with Websocket and Postgres
On this post, I will discuss the problem about the problem I have often faced in my entire career. That is system integration. If you could imagine once you have to monitor data on database's table. Base on that change you need so show data in the page, etc. The solution for this situation, commonly most of what people will do is apply pooling. But pooling is not practical way to deal with this kind of situation. Read more
Monday, December 21, 2020
Widlfly Hiberate OGM (Object Grid Mapper) with MongoDB
Thursday, December 17, 2020
Integrate Testing Java EE (JPA, EJB, CDI) with Arquillian
When it comes to JavaEE, the biggest obstacle is conducting test, especially for EJB. This makes EJB is drawback for most developers. In fact EJB offer several enterprise features for business logic implementation such as remote call, security, transaction, etc. So, it will be waste to give up those benefits. Fortunately, Java EE provides testing framework like Arquillian for conducting the test. In this post, we will demonstrate how to perform enterprise business component by using Arquillian . Read more
Saturday, November 28, 2020
Create Full Duplex by using Websocket with Wildfly 10.1.0
In this post, we demonstrate how to use websocket to implement two way communication between server and client. Typical HTTP, only client could initiate request to server. Right after server received request from client, server will send back the response to that particalar client. Read more
Monday, November 23, 2020
Wildfly Custom Authentication with JAAS (MongoDB)
In this post, we will demonstrate how to configure custom login on wildfly by using JAAS. Wildfly provides most common use for login method such as database, LDAP or even flat file. But in the practical situation, there are some requirements that need to combine or customize logic procedure, for example, using multiple source of user management systems, using NO-SQL database for user management, connecting with the legacy system to perform user authentication, etc. To meet these requirement, customize logic mechanism in application server is required. Fortunately, Wildfly also provide module to customize login. Read more.
Saturday, August 22, 2020
Secure EJB Access on Wildfly Application Server With JDBC Authentication Realm
EJB is used to create business logic in Java EE application. Setting up authorization to limit the access to your business execution base on the role. In the enterprise level, security concern is very crucial to ensure the authorized user shall be the only on who those business logic is available to. EJB provide two types of methodologies for securing business logic for instance, declarative and programmatic. Read more
Sunday, June 21, 2020
Wildfly JPA enable Second Level Cache
Sunday, May 17, 2020
Deploy Architecture (Nginx + Wildfly + PostgreSQL)
Sunday, May 10, 2020
Wildfly 10 Create XA Datasource for Distribute Transaction
Saturday, May 2, 2020
Install Wildfly 10 Service on CentOS 7
Saturday, April 18, 2020
Setup LDAP server and configure a LDAP Realm on WildFly with secured connection
Saturday, April 4, 2020
Wildfly 10 Logging Service for Specific Application
Friday, April 3, 2020
Batch Application and EJB Timer
Sunday, March 29, 2020
Integrat ActiveMQ with Wildfly 10 And Secure Connection
Saturday, March 21, 2020
Concurrency Management On Wildfly 10 Application Server
Feature Recently
Running Wildfly Application Server in Domain Mode
Wildfly application server provides two modes of how to run application one wildfly application server. It is very simple if you run your ...
Most Views
-
Once you have created report on the report studio. You are going to need to deploy your report into the server or application. In this post,...
-
In this post, I demonstrate how to set up Postgresql 12 master / slave stream (by Write Ahead Log) replication server. By utilizing this fea...
-
This post, I demonstrate concurrency management in Wildfly. Wildfly provides concurrency management as JAVA EE specification. It will allow ...