I am taking SCBCD5.0 certification soon. Right now, I am going over some EJB2.0 materials before taking on EJB3.0. I generally know EJB3.0 but never had grasped the fundamentals of EJB2.0. Mastering EJB2.0 would demystify EJB3.0.
CGI with Tomcat 7
We can run CGI scripts in Tomcat. This post is about using Tomcat to run a CGI script written in PERL. Software Requirements (used for this post) Apache Tomcat 7.0.11 JDK 1.6 update 21 Perl 5.12 (ActivePerl-5.12.2.1202) Windows XP SP3
Continuous Integration with GitHub and Jenkins in Red Hat, and AWS EC2
This post demonstrates how to setup a Continuous Integration environment using Jenkins to build codes checked in in GitHub.com. Our Jenkins instance runs on Red Hat Enterprise Linux in AWS EC2.
Configure AWS Toolkit for Eclipse with Account Credentials
This post briefly demonstrates how to configure the AWS Toolkit for Eclipse. First, Access Keys need to be generated in the AWS account. Then, use them for the AWS Toolkit plugin installed in Eclipse.
Spring – Configurable Default Value for @Value
This post demonstrates how to use @Value that has both a configurable default value and a hard-coded final fallback value.
Install Oracle Java 8 in Red Hat Enterprise Linux and AWS EC2
This post demonstrates how to install Java (JDK) 8 in Red Hat Enterprise Linux in AWS EC2.
Install Jenkins in Red Hat Enterprise Linux and AWS EC2
This post demonstrates how to install Jenkins in Red Hat Enterprise Linux in AWS EC2.
Install Docker in Red Hat Enterprise Linux and AWS EC2
This post demonstrates how to install Docker in Red Hat Enterprise Linux in AWS EC2.
Install Artifactory in Red Hat Enterprise Linux and AWS EC2
This post demonstrates how to install Artifactory in Red Hat Enterprise Linux in AWS EC2.
Reuse Unit Tests by Converting them to Parameterized Tests
This post demonstrates how to reuse our unit tests with JUnit Parameterized. Let’s say, we have a JUnit test class that tests for, for example, a single web browser’s “browse-to-URL” functionality in various scenarios and we want to reuse those tests for other browsers with the least code change.