From 53bbee27924270bdefb6675134b482909365efe8 Mon Sep 17 00:00:00 2001 From: Darran Lofthouse Date: Fri, 8 Mar 2024 10:43:20 +0000 Subject: [PATCH 1/2] Add the VSCode settings directory to the ignore list. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 682c2dad..2c715eb7 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ vendor/ .buildpath .idea *.iml +.vscode ## OS related *.DS_Store From 971774e0809f695a48acff89dcbb3f92beb26fbd Mon Sep 17 00:00:00 2001 From: Darran Lofthouse Date: Fri, 8 Mar 2024 10:43:43 +0000 Subject: [PATCH 2/2] Add a new post showing how a React application can be hosted by WildFly. --- .../2024-03-08-wildfly-react-getting-started.adoc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 _posts/2024-03-08-wildfly-react-getting-started.adoc diff --git a/_posts/2024-03-08-wildfly-react-getting-started.adoc b/_posts/2024-03-08-wildfly-react-getting-started.adoc new file mode 100644 index 00000000..e67148d9 --- /dev/null +++ b/_posts/2024-03-08-wildfly-react-getting-started.adoc @@ -0,0 +1,14 @@ +--- +layout: post +title: 'Hosting a React Application on WildFly' +date: 2024-03-08 +tags: react wildfly +synopsis: Creation of a new project bundling a new React application and hosting it on WildFly. +author: darranl +link: http://lofthouse.dev/2024/03/07/hosting-a-react-application-on-wildfly/ +--- + +As part of an upcoming development item I am going to be working with a React application deployed to the WildFly application server and invoking Jakarta RESTful Web Service endpoints to interact with the server side of the application. + +I thought others might find it useful to see the steps I have taken. This blog post describes my steps up until the point I have the default React application deployed to WildFly, I may then follow up with some blogs of my subsequent steps. +