Java

Azure DevOps release pipeline test and deploy screenshot

How to create a CI/CD pipeline for Java on Azure Devops?

Continuous integration(CI) and continuous delivery(CD) pipelines have become the norm in software engineering. In the corporate world, a CI/CD pipeline is especially useful to ensure your entire development team is following the best quality guidelines and drastically shorten the deployment cycle to satisfy your customers. Thus why all Cloud providers are now providing their CI/CD […]

How to create a CI/CD pipeline for Java on Azure Devops? Read More »

How to convert org.apache.myfaces.trinidad.model.UploadedFile to java.io.File in Java?

It’s pretty common to have to convert an org.apache.myfaces.trinidad.model.UploadedFile to a java.io.File when working with an ADF <af:inputFile>. Working with a java.io.File being the only way to retrieve values from a CSV. Here is a simple code snippet to do so : View the code on Gist.

How to convert org.apache.myfaces.trinidad.model.UploadedFile to java.io.File in Java? Read More »

How to execute client javascript in an ADF Java Bean action?

One of the best ways to enhance your ADF applications UI is to add some excellent Javascript library and to call them in your Java Bean‘s action. For instance, I often like to implement the izitoast javascript open source library. It’s a great tool to display users notification in nice looking side popups. You can

How to execute client javascript in an ADF Java Bean action? Read More »

How to set current column value of selected RichTable row from iterator in Oracle ADF

If you read yesterday article, https://cedricleruth.com/how-to-get-current-column-value-of-selected-richtable-row-from-iterator-in-adf/ , you now know have to retrieve a column value from a table selected rows inside an Oracle ADF Java Bean. While this is useful when you need to get the current column value on a button click, you may as well need to update it with a new

How to set current column value of selected RichTable row from iterator in Oracle ADF Read More »

Scroll to Top