Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

Potential Challenges



Candidate Solutions



Run Nodejs apps on Tomcat server using JavaPipe’s Tomcat service

https://thesassway.com/node-js-applications-on-tomcat/

...

tomcat-nodejs-runs-on-tomcat-thesassway.com-Node Js Applications On Tomcat.pdf link


Can Node.js be run in Tomcat? Nodejs has one significant advantage over other platforms in that it is embedded with a rather natty HTTP server. In the future, JavaScript may be able to run in tomcat as well. Java code can run only in Tomcat, which is a pure Java HTTP web server environment. Node.js can be run using JavaPipe’s Tomcat service, in addition to react and angular. Node.js, which is not written in Java, and thus runs on its own, will be difficult to use with a Tomcat container. Files from Node.js and Tomcat will be shared and distributed as part of the sharing process.



Jakarta EE 10 with OpenID Connect Authentication Tutorial on Glassfish Wildfly

https://auth0.com/blog/jakarta-ee-oidc/

javaee-OICD-lab-2023-auth0.com-Use Jakarta EE 10 with OpenID Connect Authentication.pdf link

javaee-OICD-lab-2023-auth0.com-Use Jakarta EE 10 with OpenID Connect Authentication.pdf file

Jakarta EE 10 includes a new authentication mechanism: OpenID Connect! This can be added to a Jakarta EE servlet using the new @OpenIdAuthenticationMechanismDefinition annotation.

This tutorial will show you how to implement a web application with OpenID Connect (OIDC) authentication and use Auth0 as the OIDC provider. You will also see one way to secure an API and authenticate using JSON Web Tokens (JWTs). This will all be accomplished using WildFly as the Jakarta EE runtime


Step-by-step guide for Example

...