How to Deploy Spring Boot and AWS Elastic Beanstalk

Overview of Steps AWS EBS expects for your apps to listen on port 5000 Update your Spring Boot application.properties to use: server.port=5000 Select Web App > Platform Java Upload the JAR file Create basic Spring Boot app Start with a simple REST Spring Boot app. In application.properties, change port to 5000: server.port=5000 Open terminal window cd project directory mvn clean [...]

By |2019-03-07T13:47:48-05:00March 7, 2019|Uncategorized|Comments Off on How to Deploy Spring Boot and AWS Elastic Beanstalk

Advanced Servlets: Servlet Filters Tutorial

As a Java web developer, I recommend that you take advantage of an advanced servlet component: the Servlet Filter.   A Servlet filter is an object that can intercept HTTP requests targeted at your web application.   This article from journaldev.com does a good job of walking you through the development process. Enjoy!   Java Servlet Filters Tutorial http://www.journaldev.com/1933/java-servlet-filter-example-tutorial  

By |2018-06-01T10:30:58-04:00June 1, 2018|Java, Uncategorized|Comments Off on Advanced Servlets: Servlet Filters Tutorial

Tutorial Template

Tutorial Template Video #1: JavaServer Faces Overview Videos # Video Download 1 JavaServer Faces Overview - 2 Settings up your Development Environment - 3 Installing Tomcat - MS Windows - 4 Installing Tomcat - Mac OS X - 5 Installing Eclipse - MS Windows - 6 Installing Eclipse - Mac OS X - 7 Connecting Eclipse to Tomcat - 8 [...]

By |2015-04-20T19:08:38-04:00April 20, 2015|Uncategorized|Comments Off on Tutorial Template

The Only Question You Need To Ask: FizzBuzz

When you are interviewing job candidates, how do you know if they can really write good code? Do they simply copy/paste previous code from other projects? Or do they lead the development with new and creative code? In an interview, you need to ask only one question: Write a program that prints the numbers from 1 to 100. But for [...]

By |2010-07-09T18:00:04-04:00July 9, 2010|Uncategorized|Comments Off on The Only Question You Need To Ask: FizzBuzz
Go to Top