To become proficient in Java, a student needs a structured path from basic syntax to enterprise-level concepts. Below are 10 Java projects with increasing complexity, culminating in a robust cloud-native application.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
| <java.version>1.8</java.version> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #1. UPDATE YUM | |
| yum update | |
| #2. UPGRADE KERNEL | |
| #See http://bicofino.io/2014/10/25/install-kernel-3-dot-10-on-centos-6-dot-5/ | |
| #As root: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.quartz.Job; | |
| import org.quartz.JobExecutionContext; | |
| import org.quartz.Scheduler; | |
| import org.springframework.beans.BeanWrapper; | |
| import org.springframework.beans.BeansException; | |
| import org.springframework.beans.MutablePropertyValues; | |
| import org.springframework.beans.PropertyAccessorFactory; | |
| import org.springframework.context.ApplicationContext; | |
| import org.springframework.context.ApplicationContextAware; |