About luv2admin

This author has not yet filled in any details.
So far luv2admin has created 164 blog entries.

Deploying To Tomcat using WAR files

When you deploy your Java web apps, you can make use of a Web Application Archive (WAR) file. The Web Application Archive (WAR) file is a compressed version of your web application. It uses the zip file format but the file has the .war extension. The best way to visualize it is think of your "webapp" directory being compressed as [...]

By |2020-12-26T06:56:23-05:00December 26, 2020|How-To, Java|Comments Off on Deploying To Tomcat using WAR files

Spring REST API: How to disable HTTP Delete/Put methods

Question I had a student ask the question:How can I disable HTTP Options/Delete/Put methods? At the application level it should support only GET and POST requests. Other request methods like put/delete need to be blocked. I am using Spring Boot, Spring MVC and Rest services. Answer One possible solution is to make use of Spring Interceptors. Spring Interceptors can intercept [...]

By |2020-01-06T14:14:38-05:00January 6, 2020|How-To, Spring|Comments Off on Spring REST API: How to disable HTTP Delete/Put methods

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

Effective Debugging – A Free Guide

We've all wasted time tracking down a bug right?   For me, it really depends on the position of the stars. Some days, I can track a bug down in minutes. On other days, I spend hours trying to debug a program. I have to resort to having a co-worker help me out. Of course, my co-worker will quickly spot [...]

By |2018-06-29T10:41:48-04:00June 29, 2018|Tips|Comments Off on Effective Debugging – A Free Guide

How to Survive as a Remote Developer

When I tell people that I'm a remote developer ....  they think "AWESOME"!  My response is "Well not really".   Working remotely does offer you the flexibility of working from your home office. But it is also a bit stressful since you are ALWAYS available (kind of) via email and IM. Work hours and easily spill over into family time. [...]

By |2018-06-22T10:40:46-04:00June 22, 2018|Software Career Advice|Comments Off on How to Survive as a Remote Developer

15 Free Books for People Who Code

I found this really cool list of free books today. I thought you'd enjoy it! 15 Free Books for People who Code http://sixrevisions.com/lists/free-books-code/

By |2018-06-16T10:33:26-04:00June 16, 2018|Tips|Comments Off on 15 Free Books for People Who Code

The Experience Paradox – How to Get a Job Without Experience

We've all been there before right?   We want to get that new job ... but we don't have the experience. How will we ever get the experience if no one gives a chance???   This article helps you solve this problem. Enjoy!   The Experience Paradox–How to Get a Job Without Experience http://bit.ly/1dkxkwr

By |2018-06-15T10:37:13-04:00June 15, 2018|Software Career Advice|Comments Off on The Experience Paradox – How to Get a Job Without Experience

How To Become a Full Stack Developer

You may have heard the buzz word, "Full Stack Developer". And you're probably wondering ... what is exactly is a Full Stack Developer?    Here's a good article that can shed some light on this booming career field.   How To Become a Full Stack Developer https://medium.com/coderbyte/a-guide-to-becoming-a-full-stack-developer-in-2017-5c3c08a1600c  

By |2018-06-08T10:32:06-04:00June 8, 2018|Tips|Comments Off on How To Become a Full Stack Developer

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
Go to Top