{{theTime}}

Search This Blog

Total Pageviews

Java Dynamic Frameworks that use run-time Java Compiler


  • JavaServer Pages (JSP) technology in Java Platform, Enterprise Edition (Java EE) is a widely known example of a dynamic framework that generates and compiles Java classes. The compilation is often performed by directly invoking the javac compiler, which requires an installed Java Development Kit (JDK) or by callingcom.sun.tools.javac.Main, which can be found in Sun's tools.jar
  • Apache Commons JCI provides a mechanism to compile and load Java classes into a running application.
  • Janino and Javassist also provide similar dynamic capabilities, although Janino is limited to pre-Java 1.4 language constructs, and Javassist works not at the source-code level but at a Java class abstraction level.

No comments:

Setup AWS Application Load Balancer Https

Setting up HTTPS for an AWS Application Load Balancer (ALB) involves configuring an HTTPS listener, deploying an SSL certificate, and defini...