├── JavaEE_2019 ├── AirtelHotSpot │ └── AirtelHotSpot.pptx ├── ArraysDemo_EmployeeArray_from_to_comp_desc │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ ├── Employee.class │ │ └── EmployeeSalaryComparator.class │ │ └── src │ │ ├── ArraysDemo.java │ │ ├── Employee.java │ │ └── EmployeeSalaryComparator.java ├── ArraysDemo_IntegerArray_from_to_comp_desc │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_ReverseComp │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_asList │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_byteArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_byteArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_charArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_charArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_doubleArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_floatArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_floatArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_intArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_longArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_objArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_objArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_shortArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_binarySearch_shortArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_IntegerArray_newType │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_booleanArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_byteArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_charArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_floatArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_integerArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOf_shortArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_deepToString │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_employeeArray_asc_comparator │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ ├── Employee.class │ │ └── EmployeeSalaryComparator.class │ │ └── src │ │ ├── ArraysDemo.java │ │ ├── Employee.java │ │ └── EmployeeSalaryComparator.java ├── ArraysDemo_employeeArray_asc_desc │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ └── Employee.class │ │ └── src │ │ ├── ArraysDemo.java │ │ └── Employee.java ├── ArraysDemo_employeeArray_desc_comparator │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ ├── Employee.class │ │ └── EmployeeSalaryComparator.class │ │ └── src │ │ ├── ArraysDemo.java │ │ ├── Employee.java │ │ └── EmployeeSalaryComparator.java ├── ArraysDemo_equals_IntegerArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_booleanArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_byteArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_charArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_floatArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_equals_shortArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_booleanArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_booleanArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_byteArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_byteArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_charArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_charArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_doubleArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_floatArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_floatArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_intArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_longArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_obejctArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_objectArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_shortArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_fill_shortArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_byteArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_byteArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_charArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_charArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_doubleArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_float_array │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_float_array_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_int_array │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_int_array_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_long_array │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_long_array_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_objectArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_objectArray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_short_array │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_sort_short_array_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_stringArray_asc │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_booleanArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_byteArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_charArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_floatArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_objectArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_toString_shortArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_deepEquals_MDArray │ ├── Arrays-deepEquals.pptx │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_deepEquals_MDArray_emp │ ├── Arrays-deepEquals_emp.pptx │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ └── Employee.class │ │ └── src │ │ ├── ArraysDemo.java │ │ └── Employee.java ├── Arrays_hashcode │ ├── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── ArraysDemo.class │ │ └── src │ │ │ └── ArraysDemo.java │ └── Arrays_hashcode.pptx ├── Arrays_parallelsort_bytearray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_chararray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_doublearray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_floatarray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_intarray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_intarray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_longarray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_longarray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_shortarray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── EnumMapDemo_Contains │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_Intro │ ├── EnumMap Intro.pptx │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_clear │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_entrySet │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_get │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_keySet │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_putAll │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_remove │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_size │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumMapDemo_values │ └── EnumMapDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumMapDemo$Month.class │ │ └── EnumMapDemo.class │ │ └── src │ │ └── EnumMapDemo.java ├── EnumSetDemo_ComplementOf │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_allOf │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_noneOf │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_of │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_of_five │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_of_four │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_of_three │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_of_two │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_of_varargs │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSetDemo_range │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── EnumSet_Intro │ ├── EnumSet Intro.pptx │ └── EnumSetDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── EnumSetDemo$Month.class │ │ └── EnumSetDemo.class │ │ └── src │ │ └── EnumSetDemo.java ├── Gradle_Install_Windows │ └── Gradle_Install.pptx ├── JAXB_Intro │ ├── JAXB_Intro.pptx │ └── JaxbDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── ram │ │ │ └── jaxb │ │ │ ├── Employee.java │ │ │ └── JaxbDemo.java │ │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── ram │ │ │ └── jaxb │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── ram │ │ └── jaxb │ │ ├── Employee.class │ │ └── JaxbDemo.class ├── JAXB_bookstore │ ├── JAXB_BookStore.pptx │ └── JaxbDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── ram │ │ │ │ └── jaxb │ │ │ │ ├── Book.java │ │ │ │ ├── Bookstore.java │ │ │ │ └── JaxbDemo.java │ │ └── test │ │ │ └── java │ │ │ └── ram │ │ │ └── jms │ │ │ └── AppTest.java │ │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── ram │ │ │ │ └── jaxb │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ └── ram │ │ │ └── jaxb │ │ │ ├── Book.class │ │ │ ├── Bookstore.class │ │ │ └── JaxbDemo.class │ │ └── test-classes │ │ └── ram │ │ └── jms │ │ └── AppTest.class ├── JMS_Queue_RabbitMQ_Send_receive │ ├── JMS_Queue_RabbitMQ_Send_receive.pptx │ ├── MessageReceiver_Output.txt │ ├── MessageSender_Output.txt │ └── jmsdemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── ram │ │ │ │ └── jms │ │ │ │ ├── MessageReceiver.java │ │ │ │ └── MessageSender.java │ │ └── test │ │ │ └── java │ │ │ └── ram │ │ │ └── jms │ │ │ └── AppTest.java │ │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── ram │ │ │ │ └── jms │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ └── ram │ │ │ └── jms │ │ │ ├── MessageReceiver.class │ │ │ └── MessageSender.class │ │ └── test-classes │ │ └── ram │ │ └── jms │ │ └── AppTest.class ├── JSON_Data_Types │ └── JSON Data Types.pptx ├── JSON_Intro │ ├── JSON_Intro.pptx │ ├── Json_Receiving.html │ └── Json_Send.html ├── JSON_Storing Data │ ├── JSON_Storing Data.pptx │ └── Json_Storage.html ├── JSON_Syntax │ └── JSON Syntax.pptx ├── JSON_Uses_JavaScript_Syntax │ ├── JSON Uses JavaScript Syntax.pptx │ ├── Json_example1.html │ ├── Json_example2.html │ ├── Json_example3.html │ └── Json_example4.html ├── JSON_vs_XML │ └── JSON vs XML.pptx ├── Java_util_Arrays_Intro │ └── Java util Arrays.pptx ├── Mavan_Basic_with_without │ └── Mavan_Basic.pptx ├── Mavan_How_works │ └── Mavan_How it works.pptx ├── Postman_install │ └── Postman_install.pptx ├── RandomDemo_doubles │ ├── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── RandomDemo1.class │ │ │ ├── RandomDemo2.class │ │ │ └── RandomDemo3.class │ │ └── src │ │ │ ├── RandomDemo1.java │ │ │ ├── RandomDemo2.java │ │ │ └── RandomDemo3.java │ ├── RandomDemo1_Output.txt │ ├── RandomDemo2_Output.txt │ └── RandomDemo3_Output.txt ├── RandomDemo_doubles_bound │ ├── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── RandomDemo1.class │ │ │ └── RandomDemo2.class │ │ └── src │ │ │ ├── RandomDemo1.java │ │ │ └── RandomDemo2.java │ ├── RandomDemo1_Output.txt │ └── RandomDemo2_Output.txt ├── RandomDemo_ints │ ├── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── RandomDemo1.class │ │ │ └── RandomDemo2.class │ │ └── src │ │ │ ├── RandomDemo1.java │ │ │ └── RandomDemo2.java │ ├── RandomDemo1_Output.txt │ └── RandomDemo2_Output.txt ├── RandomDemo_ints_bound │ ├── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── RandomDemo1.class │ │ │ └── RandomDemo2.class │ │ └── src │ │ │ ├── RandomDemo1.java │ │ │ └── RandomDemo2.java │ ├── RandomDemo1_Output.txt │ └── RandomDemo2_Output.txt ├── RandomDemo_longs │ ├── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── RandomDemo1.class │ │ │ └── RandomDemo2.class │ │ └── src │ │ │ ├── RandomDemo1.java │ │ │ └── RandomDemo2.java │ ├── RandomDemo1_Output.txt │ └── RandomDemo2_Output.txt ├── RandomDemo_longs_bound │ ├── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── RandomDemo1.class │ │ │ └── RandomDemo2.class │ │ └── src │ │ │ ├── RandomDemo1.java │ │ │ └── RandomDemo2.java │ ├── RandomDemo1_Output.txt │ └── RandomDemo2_Output.txt ├── Spring Boot_Priority_Order │ └── Spring Boot_ContextPath_Priority Order of Configurations.pptx ├── Spring Boot_Why │ └── Spring Boot_Why.pptx ├── SpringBootApplication_annotation │ └── SpringBootApplication_annotation.pptx ├── SpringBootDemo_Filter │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeController.java │ │ │ │ └── filter │ │ │ │ └── EmployeeFilter.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Servlet Filter.pptx ├── SpringBootDemo_ThemeLeaf_Internationalization │ ├── Spring Boot - Internationalization.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── config │ │ │ │ └── Internationalization.java │ │ │ │ └── controller │ │ │ │ └── WelcomeController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── messages.properties │ │ │ ├── messages_fr.properties │ │ │ └── templates │ │ │ └── welcome.html │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBootDemo_ThemeLeaf_Webapp │ ├── Spring Boot - Thymeleaf.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── controller │ │ │ │ └── WelcomeController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── static │ │ │ └── css │ │ │ │ └── styles.css │ │ │ └── templates │ │ │ └── welcome.html │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBootDemo_banner_off_command │ ├── How to disable spring logo banner in spring boot.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ └── Application.java │ │ └── resources │ │ └── application.properties ├── SpringBootDemo_banner_off_program │ ├── How to disable spring logo banner in spring boot.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── Application.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── SpringBootDemo_banner_off_prop │ ├── How to disable spring logo banner in spring boot.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── Application.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── SpringBootDemo_custom_banner │ ├── Spring-boot-Custom Banner.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── Application.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── banner.txt │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── Helloworld │ │ └── HelloworldApplicationTests.java ├── SpringBootDemo_file_download │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── controller │ │ │ │ └── FileDownloadController.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ ├── Spring_Boot_FileDownload.pptx │ └── tree.jpg ├── SpringBootDemo_file_upload │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── controller │ │ │ │ └── FileUploadController.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ ├── Spring_Boot_FileUpload.pptx │ └── tree.jpg ├── SpringBootDemo_interceptor │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeController.java │ │ │ │ └── interceptor │ │ │ │ ├── EmployeeInterceptor.java │ │ │ │ └── EmployeeInterceptorAppConfig.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Interceptor.pptx ├── SpringBootDemo_jetty_option │ ├── Spring Boot – Configure Jetty Options.pptx │ └── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ └── HelloWorldApplication.java │ │ └── resources │ │ └── application.properties ├── SpringBootDemo_schedule_cron │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── scheduler │ │ │ │ └── Scheduler.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Schedule_Cron Expressions_Annoatation.pptx ├── SpringBootDemo_schedule_fixeddelay │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── scheduler │ │ │ │ └── Scheduler.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot__Schedule_Fixed_Delay.pptx ├── SpringBootDemo_schedule_fixedrate │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── scheduler │ │ │ │ └── Scheduler.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Scheduling_fixed_rate.pptx ├── SpringBootDemo_schedule_initialdelay │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── scheduler │ │ │ │ └── Scheduler.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Schedule_InitialDelay.pptx ├── SpringBootDemo_standalone │ └── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ ├── SpringBootStandAloneApplication.java │ │ │ └── model │ │ │ └── Employee.java │ │ └── resources │ │ └── application.properties ├── SpringBoot_Active_Profile_application_property │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application-prod.properties │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Active_Profile_application_property.pptx ├── SpringBoot_Active_Profile_application_yml │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Active_Profile_application yml.pptx ├── SpringBoot_Advantages │ └── Spring Boot Adv.pptx ├── SpringBoot_ApplicationRunner │ ├── Output.txt │ ├── Spring Boot_Runners_Application.pptx │ └── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ram │ │ └── SpringBootStandAloneApplication.java ├── SpringBoot_BOM │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application-prod.properties │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring Boot_bill of material.pptx ├── SpringBoot_Bootstrapping_gradle │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring Boot_Bootstrapping_gradle.pptx ├── SpringBoot_Bootstrapping_maven │ ├── Helloworld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_Bootstrapping_maven.pptx ├── SpringBoot_Bootstrapping_sts │ ├── Spring Boot_Bootstrapping_sts.pptx │ └── demo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── demo │ │ │ │ └── DemoApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── demo │ │ └── DemoApplicationTests.java ├── SpringBoot_CommandLineRunner │ ├── Output.txt │ ├── Spring Boot_Runners_Command.pptx │ └── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ram │ │ └── SpringBootStandAloneApplication.java ├── SpringBoot_CommandLineRunner_Component │ ├── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── Application.java │ │ │ └── runner │ │ │ └── ApplicationStartupRunner.java │ └── SpringBoot_CommandLineRunner_Component.pptx ├── SpringBoot_CommandLineRunner_order │ ├── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── Application.java │ │ │ └── runner │ │ │ ├── ApplicationStartupRunnerOne.java │ │ │ └── ApplicationStartupRunnerTwo.java │ └── SpringBoot_CommandLineRunner_order.pptx ├── SpringBoot_CommandLine_port │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring Boot Command Line Properties.pptx ├── SpringBoot_Common_PropertiesFile │ └── SpringBoot_PropertiesFile.pptx ├── SpringBoot_ConfigurationProperties │ ├── Spring Boot @ConfigurationProperties example.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── config │ │ │ │ └── UserProperties.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── SpringBoot_ConfigurationProperties_Validation │ ├── Spring Boot @ConfigurationProperties Property Validation.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── config │ │ │ │ └── UserProperties.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── SpringBoot_Configure_Jetty_Program │ ├── Spring Boot – Configure Jetty Options_Program.pptx │ └── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ └── HelloWorldApplication.java │ │ └── resources │ │ └── application.properties ├── SpringBoot_Diff_ConfigurationProperties_Value │ └── Difference between @ConfigurationProperties and @Value.pptx ├── SpringBoot_ExternalTomcat │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── SpringBoot_ExternalTomcat.pptx ├── SpringBoot_Externalized_Properties │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorldApplication.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ ├── SpringBoot_Externalized_Properties.pptx │ └── application.properties ├── SpringBoot_Get_loaded_beans │ ├── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── .jsdtscope │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.m2e.core.prefs │ │ │ ├── org.eclipse.wst.common.component │ │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── Application.java │ └── SpringBoot_Get all loaded beans.pptx ├── SpringBoot_Hibernate_SQL_logs │ └── 8 │ │ └── How to configure Spring Boot to show Hibernate SQL Query in logs.pptx ├── SpringBoot_JMS_ActiveMQ_Embedded │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── MessageProducerApplication.java │ │ │ │ │ ├── config │ │ │ │ │ └── JMSConfiguration.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ └── receiver │ │ │ │ │ └── MessageReceiver.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── rest │ │ │ └── SpringBootApplicationTests.java │ └── SpringBoot_JMS_ActiveMQ Example.pptx ├── SpringBoot_JMS_ActiveMQ_Example │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── MessageProducerApplication.java │ │ │ │ │ ├── config │ │ │ │ │ └── JMSConfiguration.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ └── receiver │ │ │ │ │ └── MessageReceiver.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── rest │ │ │ └── SpringBootApplicationTests.java │ └── SpringBoot_JMS_ActiveMQ Example.pptx ├── SpringBoot_Jetty_Gradle │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── bin │ │ │ └── main │ │ │ │ ├── application.properties │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorldApplication.class │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ └── application.properties │ └── Spring Boot – Configure Jetty Server.pptx ├── SpringBoot_Properties_ChangePort │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── SpringBoot_Properties_ChangePort.pptx ├── SpringBoot_Random_Port │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── log │ │ │ └── spring.log │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Random_Port.pptx ├── SpringBoot_Spring_MVC_JSP │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ └── controller │ │ │ │ │ └── UserController.java │ │ │ ├── resources │ │ │ │ └── application.properties │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── jsp │ │ │ │ └── welcome.jsp │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── SpringBoot_Spring MVC_JSP.pptx ├── SpringBoot_Starters_Example │ └── Spring Boot Starters.pptx ├── SpringBoot_Value_annotation │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring Boot @Value.pptx ├── SpringBoot_Value_annotation_default │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring Boot @Value_default.pptx ├── SpringBoot_WebService_XML │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── SpringBoot_WebService_XML.pptx ├── SpringBoot_changeport_yml │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── SpringBoot_application_yml.pptx ├── SpringBoot_display_beans │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── SpringBoot_DisplayAllBeans.pptx ├── SpringBoot_eclipse_Import_Helloworld │ └── Helloworld │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── Helloworld │ │ │ │ └── HelloworldApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── Helloworld │ │ └── HelloworldApplicationTests.java ├── SpringBoot_eclipse_Import_Helloworld_gradle │ └── HelloWorld │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorldApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── HelloWorldApplicationTests.java ├── SpringBoot_eclipse_debug │ └── Helloworld │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── Helloworld │ │ │ │ └── HelloworldApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── Helloworld │ │ └── HelloworldApplicationTests.java ├── SpringBoot_logback │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── log │ │ │ └── spring.log │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Configure Logback.pptx ├── SpringBoot_logback_file │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ ├── logback.out.xml │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Configure_Logback_file.pptx ├── SpringBoot_logback_file_console │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── logback.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Configure_Logback_file_both.pptx ├── SpringBoot_logback_yml_config │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── log │ │ │ └── spring.log │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_logging_YAML.pptx ├── SpringBoot_logback_yml_config_Console_log │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_logging_YAML_file_log.pptx ├── SpringBoot_port_Programmatic_factory │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorldApplication.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_port_Programmatic.pptx ├── SpringBoot_port_Programmatic_setDefaultProp │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorldApplication.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_port_Programmatic.pptx ├── SpringBoot_webapplication │ ├── Spring Boot web application example.pptx │ └── SpringBootHelloWorldExample │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ ├── SpringBootHelloWorldApplication.java │ │ │ └── controller │ │ │ └── HelloWorldController.java │ │ ├── resources │ │ └── application.properties │ │ └── webapp │ │ ├── WEB-INF │ │ ├── hello.jsp │ │ └── web.xml │ │ └── index.jsp ├── SpringBoot_what │ └── SpringBoot_what.pptx ├── Spring_Boot_JDBCTemplate_Insert │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ └── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_JDBCTemplate_Insert.pptx ├── Spring_Boot_JDBCTemplate_delete │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ └── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_JDBCTemplate_delete.pptx ├── Spring_Boot_JDBCTemplate_find │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ └── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_JDBCTemplate_find.pptx ├── Spring_Boot_JDBCTemplate_findAll │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ └── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_JDBCTemplate_findAll.pptx ├── Spring_Boot_JDBCTemplate_update │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ └── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_JDBCTemplate_update.pptx ├── Spring_Boot_Logging │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Logging.pptx ├── Spring_Boot_Logging_File_Path │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── log │ │ │ └── spring.log │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Logging_File.pptx ├── Spring_Boot_Multiple_DataSource │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── config │ │ │ │ │ └── SpringConfiguration.java │ │ │ │ │ ├── model │ │ │ │ │ ├── Employee.java │ │ │ │ │ └── User.java │ │ │ │ │ └── repository │ │ │ │ │ ├── EmployeeRepository.java │ │ │ │ │ └── UserRepository.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ ├── Spring_Boot_Multiple DataSource.pptx │ ├── employee.sql │ └── user.sql ├── Spring_Boot_logging_YMAL_Active_Profile │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── log │ │ │ └── spring.log │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_logging_YMAL_Active_Profile.pptx ├── Spring_JMS_AMQP_0-9-1_Model │ └── Spring_JMS_AMQP 0-9-1 Model.pptx ├── Spring_JMS_AMQP_Default_Exchange │ └── Spring_JMS_AMQP 0-9-1 Model_Default_Exchange.pptx ├── Spring_JMS_AMQP_Model_DirectExchanges │ └── Spring_JMS_AMQP 0-9-1 Model_Direct Exchanges.pptx ├── Spring_JMS_AMQP_Model_Fanout_Exchanges │ └── Spring_JMS_AMQP 0-9-1 Model_Fanout Exchanges.pptx ├── Spring_JMS_AMQP_Model_Headers_Exchanges │ └── Spring_JMS_AMQP 0-9-1 Model_Headers Exchanges.pptx ├── Spring_JMS_AMQP_Topic_Exchanges │ └── Spring_JMS_AMQP 0-9-1 Model_Topic Exchanges.pptx ├── Spring_JMS_Model_Exchanges │ └── Spring_JMS_AMQP 0-9-1 Model_Exchanges.pptx ├── Spring_JMS_RabbitMQ_Example │ ├── SpringJMSConsumer │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── MessageConsumerApp.java │ │ │ │ ├── MessageReceiver.java │ │ │ │ └── RabbitMQConfig.java │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram │ │ │ │ └── SpringJMSConsumer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageConsumerApp.class │ │ │ ├── MessageReceiver.class │ │ │ └── RabbitMQConfig.class │ ├── SpringJMSConsumer_Output.txt │ ├── SpringJMSProducer │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── MessageProducerApp.java │ │ │ │ └── RabbitMQConfig.java │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram │ │ │ │ └── SpringJMSProducer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageProducerApp.class │ │ │ └── RabbitMQConfig.class │ ├── SpringJMSProducer_Output.txt │ └── Spring_JMS_RabbitMQ Example.pptx ├── Spring_JMS_RabbitMQ_Example_Product │ ├── SpringJMSConsumer │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── MessageConsumerApp.java │ │ │ │ ├── MessageReceiver.java │ │ │ │ ├── RabbitMQConfig.java │ │ │ │ └── model │ │ │ │ └── Product.java │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram │ │ │ │ └── SpringJMSConsumer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageConsumerApp.class │ │ │ ├── MessageReceiver.class │ │ │ ├── RabbitMQConfig.class │ │ │ └── model │ │ │ └── Product.class │ ├── SpringJMSConsumer_Output.txt │ ├── SpringJMSProducer │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── MessageProducerApp.java │ │ │ │ ├── RabbitMQConfig.java │ │ │ │ └── model │ │ │ │ └── Product.java │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram │ │ │ │ └── SpringJMSProducer │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageProducerApp.class │ │ │ ├── RabbitMQConfig.class │ │ │ └── model │ │ │ └── Product.class │ ├── SpringJMSProducer_Output.txt │ └── Spring_JMS_RabbitMQ_Example_product.pptx ├── Spring_JMS_messaging_model_RabbitMQ │ └── Spring_JMS_messaging model in Rabbit.pptx ├── Spring_MVC_Execution_Flow_Diagram │ └── Spring MVC Execution Flow Diagram.pptx ├── Spring_boot_Context_path_Property │ ├── Helloworld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_Ap.pptx ├── Spring_boot_Context_path_TomcatServletWebServerFactory │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ ├── CustomContainer.java │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_Program.pptx ├── Spring_boot_Context_path_YML │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.yml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_yml.pptx ├── Spring_boot_Context_path_eclipse │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_eclipse.pptx ├── Spring_boot_Context_path_java_Command │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── HelloWorld │ │ │ │ └── HelloWorldApplication.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_javacommand.pptx ├── Spring_boot_Context_path_os │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_OS.pptx ├── Spring_boot_Context_path_program │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_Program.pptx ├── Spring_boot_Context_path_program_Container │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ ├── CustomContainer.java │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_Program.pptx ├── Spring_boot_Context_path_system_prop │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_ContextPath_Program.pptx ├── Springboot_jetty_maven │ ├── Spring Boot – Configure Jetty Server.pptx │ └── SpringBootDemo │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── .jsdtscope │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ ├── org.eclipse.wst.common.component │ │ ├── org.eclipse.wst.common.project.facet.core.xml │ │ ├── org.eclipse.wst.jsdt.ui.superType.container │ │ ├── org.eclipse.wst.jsdt.ui.superType.name │ │ └── org.eclipse.wst.validation.prefs │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── ram │ │ └── HelloWorldApplication.java ├── Springboot_log4j2 │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── log4j2.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring boot log4j2 configuration example.pptx ├── Springboot_log4j2_propertity │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── log │ │ │ └── spring.log │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── log4j2.Properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring boot log4j2 properties example.pptx ├── Springboot_starter_Maven_Templates │ └── Spring-boot-starter Maven Templates.pptx ├── Springboot_withour_restart │ ├── HelloWorld │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── HelloWorld │ │ │ │ │ └── HelloWorldApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── Spring Boot_Reload Changes.pptx ├── Tomcat_9_Installation │ └── Tomcat 9 Installation.pptx └── jmsdemo_send_product │ ├── JMS_Queue_RabbitMQ_Send_receive.pptx │ ├── MessageReceiver_Output.txt │ ├── MessageSender_Output.txt │ └── jmsdemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ └── java │ │ │ └── ram │ │ │ ├── jms │ │ │ ├── MessageReceiver.java │ │ │ └── MessageSender.java │ │ │ └── model │ │ │ └── Product.java │ └── test │ │ └── java │ │ └── ram │ │ └── jms │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── ram │ │ │ └── jms │ │ │ ├── pom.properties │ │ │ └── pom.xml │ └── ram │ │ ├── jms │ │ ├── MessageReceiver.class │ │ └── MessageSender.class │ │ └── model │ │ └── Product.class │ └── test-classes │ └── ram │ └── jms │ └── AppTest.class ├── JavaEE_2020 ├── Add_MongoDB_Array_Insert │ ├── Add MongoDB Array using insert() with Example.pptx │ └── MongoDB Commands.txt ├── ArraysDemo_Stream_TArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_Stream_TArray_Range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_Stream_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_Stream_doubleArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_Stream_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_Stream_intArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_Stream_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_Stream_longArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_TArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_TArray_newType │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_booleanArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_byteArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_charArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_floatArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_copyOfRange_shortArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_IntegerArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_IntegerArray_Range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_doubleArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_intArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_parallelPrefix_longArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_setAll_TArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_setAll_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_setAll_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_setAll_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_TArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_TArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_doubleArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_doubleArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_intArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_intArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_longArray │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── ArraysDemo_spliterator_longArray_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_bytearray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_chararray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_doublearray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_floatarray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_shortarray_from_to │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── ArraysDemo.class │ │ └── src │ │ └── ArraysDemo.java ├── Arrays_parallelsort_user │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ └── User.class │ │ └── src │ │ ├── ArraysDemo.java │ │ └── User.java ├── Arrays_parallelsort_user_comparator │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ └── User.class │ │ └── src │ │ ├── ArraysDemo.java │ │ └── User.java ├── Arrays_parallelsort_user_comparator_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ └── User.class │ │ └── src │ │ ├── ArraysDemo.java │ │ └── User.java ├── Arrays_parallelsort_user_range │ └── ArraysDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ArraysDemo.class │ │ └── User.class │ │ └── src │ │ ├── ArraysDemo.java │ │ └── User.java ├── CREATE_TABLE_SELECT │ ├── CREATE TABLE ... SELECT Syntax.pptx │ └── Employee_DB.sql ├── CURL_install_windows │ └── CURL install.pptx ├── Configuring_MongoDB_Config_file │ ├── Configuring MongoDB server with configuration file.pptx │ ├── MongoDB Command.txt │ └── mongo.config ├── Create_Database_Collection_MongoDB │ ├── How to Create Database & Collection in MongoDB.pptx │ └── MongoDB_Commands.txt ├── Creating_doc_Javascript_file │ ├── CreatingInserting a document in collection using javascript file.pptx │ └── studentsInfo.js ├── Cursor_in_MongoDb │ ├── MongoDB Commands.txt │ └── What is Cursor in MongoDb.pptx ├── Data_Modeling_Introduction │ └── Data Modeling Introduction.pptx ├── Data_Modelling_in_MongoDB │ └── Data Modelling in MongoDB.pptx ├── Database_Tables │ └── Database Tables.pptx ├── Difference_between_MongoDB_RDBMS │ └── Difference between MongoDB & RDBMS.pptx ├── Difference_between_MongoDB_RDBMS_U │ └── Difference between MongoDB RDBMS.pptx ├── Difference_between_SOAP │ └── Difference between SOAP v1.1 and SOAP.pptx ├── How_Web_Services_Work │ └── How Web Services Work.pptx ├── Inserting_Array_Javascript_file │ ├── Inserting Array of Documents.pptx │ └── studentsInfoArray.js ├── Install_MongoDB_on_Windows_msi │ └── Install MongoDB On Windows_msi.pptx ├── Install_MongoDB_on_Windows_zip │ └── Install MongoDB On Windows_zip.pptx ├── InternalizationCurrencyDemo │ ├── I18N with Currency.pptx │ └── InternalizationCurrencyDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── InternalizationCurrencyDemo.class │ │ └── src │ │ └── InternalizationCurrencyDemo.java ├── InternalizationNumberDemo │ ├── I18N with Number.pptx │ └── InternalizationNumberDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── InternalizationNumberDemo.class │ │ └── src │ │ └── InternalizationNumberDemo.java ├── InternationalizationDateDemo │ ├── I18N with Date.pptx │ └── InternationalizationDateDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── InternationalizationDateDemo.class │ │ └── src │ │ └── InternationalizationDateDemo.java ├── InternationalizationDateTimeDemo │ ├── I18N with DateTime.pptx │ └── InternationalizationDateDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── InternationalizationDateTimeDemo.class │ │ └── src │ │ └── InternationalizationDateTimeDemo.java ├── InternationalizationTimeDemo │ ├── I18N with Time.pptx │ └── InternationalizationDateDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── InternationalizationTimeDemo.class │ │ └── src │ │ └── InternationalizationTimeDemo.java ├── Internationalization_in_java │ └── Internationalization_in_java.pptx ├── Introduction_to_1_MongoDB │ └── Introduction to MongoDB.pptx ├── Introduction_to_NoSQL_Databases │ └── Introduction to NoSQL Databases.pptx ├── JSON_Arrays │ ├── JSON Arrays.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_Array.html │ │ └── src │ │ └── Json_Array.html ├── JSON_Arrays_delete │ ├── JSON Arrays.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_Array.html │ │ └── src │ │ └── Json_Array.html ├── JSON_Arrays_forin_loop │ ├── JSON Arrays.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_Array.html │ │ └── src │ │ └── Json_Array.html ├── JSON_Arrays_forloop │ ├── JSON Arrays.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_Array.html │ │ └── src │ │ └── Json_Array.html ├── JSON_Arrays_modify │ ├── JSON Arrays.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_Array.html │ │ └── src │ │ └── Json_Array.html ├── JSON_Arrays_nested │ ├── JSON Arrays.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_Array.html │ │ └── src │ │ └── Json_Array.html ├── JSON_Nested_Delete_Object_Properties │ ├── JSON Objects Delete Object Properties.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_delete.html │ │ └── src │ │ └── Json_delete.html ├── JSON_Nested_object │ ├── JSON Nested.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_nested.html │ │ └── src │ │ └── Json_nested.html ├── JSON_Objects │ ├── JSON Objects.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── Json_object1.html │ │ └── Json_object2.html │ │ └── src │ │ ├── Json_object1.html │ │ └── Json_object2.html ├── JSON_Objects_Loop │ ├── JSON Objects Loop.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_loop.html │ │ └── src │ │ └── Json_loop.html ├── JSON_Parse │ ├── JSON.parse().pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── Application.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── static │ │ │ ├── Json_parse.html │ │ │ └── json_demo.txt │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── JSON_Parsing_Dates │ ├── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── Json_date1.html │ │ │ └── Json_date2.html │ │ └── src │ │ │ ├── Json_date1.html │ │ │ └── Json_date2.html │ └── JSON_Parsing Dates.pptx ├── JSON_Parsing_Functions │ ├── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── Json_function.html │ │ └── src │ │ │ └── Json_function.html │ └── JSON_Parsing Functions.pptx ├── JSON_Stringify │ ├── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── Json_stringify.html │ │ └── src │ │ │ └── Json_stringify.html │ └── Stringify a JavaScript Object.pptx ├── JSON_Stringify_array │ ├── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── Json_stringify.html │ │ └── src │ │ │ └── Json_stringify.html │ └── Stringify a JavaScript Array.pptx ├── JSON_nested_Objects_Modify_Values │ ├── JSON Objects Modify Values.pptx │ └── JSON │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Json_modify.html │ │ └── src │ │ └── Json_modify.html ├── JSON_online_Parser │ ├── JSON Parser.pptx │ ├── Json_array.txt │ ├── Json_nested.txt │ ├── employee.txt │ └── json_ArrayofEmployee.txt ├── JSON_parse_array │ ├── JSON.parse().pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── Application.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── static │ │ │ ├── Json_parse.html │ │ │ └── json_demo.txt │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── Java_Networking_Intro │ └── Java_Networking_Intro.pptx ├── Java_Networking_Terminology │ └── Java Networking Terminology.pptx ├── Java_Socket_Programming │ ├── Java Socket Programming.pptx │ ├── SocketClientDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── Client.class │ │ └── src │ │ │ └── Client.java │ └── SocketServerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Server.class │ │ └── src │ │ └── Server.java ├── Java_Socket_Programming_chat │ ├── Java Socket Programming_chat.pptx │ ├── SocketClientDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── Client.class │ │ └── src │ │ │ └── Client.java │ └── SocketServerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── Server.class │ │ └── src │ │ └── Server.java ├── LocaleDemo_cons_lang │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_cons_lang_country │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_getAvailableLocales │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_getDisplayCountry_locale │ ├── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── LocaleDemo.class │ │ └── src │ │ │ └── LocaleDemo.java │ └── ~$SpringBoot_BatchService.pptx ├── LocaleDemo_getDisplayLang_locale │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_getDisplayName_locale │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_getISOCountries │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_getISOLanguages │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_getVarient_locale │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_setDefault │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── LocaleDemo_variant │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── Locale_Intro │ ├── Locale.pptx │ └── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── LocaleDemo.class │ │ └── src │ │ └── LocaleDemo.java ├── Locale_fields │ ├── LocaleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── LocaleDemo.class │ │ └── src │ │ │ └── LocaleDemo.java │ └── Locale_fields.pptx ├── Mapping_RDBMS_MongoDB │ └── Mapping Relational Databases to MongoDB.pptx ├── Mapping_RDBMS_MongoDB_V1 │ └── Mapping Relational Databases to MongoDB.pptx ├── ModelTree_Structures_Child_References │ ├── Model Tree Structures with Child References.pptx │ └── MongoDB Command.txt ├── Model_One_to_Many │ └── Model One-to-Many Relationships.pptx ├── Model_One_to_Many_Ref │ └── Model One-to-Many Relationships.pptx ├── Model_One_to_One │ └── Model One-to-One Relationships.pptx ├── Model_Tree_Parent_References │ ├── Model Tree Structures with Parent References.pptx │ └── MongoDB Command.txt ├── MongoDB_Aggregation_avg │ └── MongoDB - Aggregation_avg.pptx ├── MongoDB_Aggregation_first_last │ └── MongoDB - Aggregation_first.pptx ├── MongoDB_Aggregation_min_max │ └── MongoDB - Aggregation_min.pptx ├── MongoDB_Aggregation_sum │ └── MongoDB - Aggregation_sum.pptx ├── MongoDB_Count_Function │ └── MongoDB Count() Function with Examples.pptx ├── MongoDB_Create_Collection │ └── MongoDB - Create Collection.pptx ├── MongoDB_Create_DB │ └── MongoDB - Create Database.pptx ├── MongoDB_DataModelDesign │ └── Data Model Design.pptx ├── MongoDB_DataModelling │ └── MongoDB - Data Modelling.pptx ├── MongoDB_Delete_Document │ └── MongoDB - Delete Document.pptx ├── MongoDB_Deleting_documents │ ├── Deleting documents.pptx │ └── MongoDB Commands.txt ├── MongoDB_Drop_Collection │ └── MongoDB - Drop Collection.pptx ├── MongoDB_Drop_DB │ └── MongoDB - Drop Database.pptx ├── MongoDB_Fetch_last │ ├── Fetching last 'n' documents from a collection.pptx │ └── MongoDB Commands.txt ├── MongoDB_Indexing │ └── MongoDB Indexing.pptx ├── MongoDB_Indexing_3 │ ├── MongoDB - Indexing.pptx │ └── MongoDB Commands.txt ├── MongoDB_Indexing_Tutorial_2 │ ├── MongoDB Commands.txt │ └── MongoDB Indexing Tutorial - createIndex(), dropindex() Example.pptx ├── MongoDB_Insert_Document │ ├── Example to Insert Multiple Documents.txt │ ├── Example to Insert Single Document.txt │ └── MongoDB - Insert Document.pptx ├── MongoDB_Insert_Document_Save │ ├── Example to Insert Multiple Documents.txt │ ├── Example to Insert Single Document.txt │ └── MongoDB - Insert Document_save.pptx ├── MongoDB_Intro │ └── MongoDB_Intro.pptx ├── MongoDB_Limit_Records │ └── MongoDB - Limit Records.pptx ├── MongoDB_Overview │ └── MongoDB_Overview.pptx ├── MongoDB_PK │ └── MongoDB_id.pptx ├── MongoDB_Projection │ └── MongoDB - Projection.pptx ├── MongoDB_Query_Document_find │ └── MongoDB - Query Document_find.pptx ├── MongoDB_Query_Document_find_And │ └── MongoDB - Query Document_find_And.pptx ├── MongoDB_Query_Document_find_And_or │ └── MongoDB - Query Document_find_AND_OR.pptx ├── MongoDB_Query_Document_find_or │ └── MongoDB - Query Document_find_OR.pptx ├── MongoDB_Query_Document_find_where │ └── MongoDB - Query Document_find_where.pptx ├── MongoDB_Query_Document_find_where_gt │ └── MongoDB - Query Document_find_where.pptx ├── MongoDB_Query_Document_find_where_lt │ └── MongoDB - Query Document_find_where.pptx ├── MongoDB_Query_Document_find_where_ne │ └── MongoDB - Query Document_find_where.pptx ├── MongoDB_Regex_example_1 │ └── MongoDB Regular Expression (Regex) with Examples.pptx ├── MongoDB_Regex_example_no_regex_op │ ├── MongoDB Commands.txt │ └── MongoDB Regular Expression (Regex) with Examples.pptx ├── MongoDB_Regex_example_options │ ├── MongoDB Commands.txt │ └── MongoDB Regular Expression (Regex) with Examples.pptx ├── MongoDB_Skip_Records │ └── MongoDB - Skip Records.pptx ├── MongoDB_Sort_Records │ └── MongoDB - Sort Records.pptx ├── MongoDB_Update_Document │ ├── MongoDB Commands.txt │ └── MongoDB Update() Document with Example.pptx ├── MongoDB_Updating_Documents_Student │ ├── MongoDB Commands.txt │ └── Updating Documents.pptx ├── MongoDB_advantages_over_RDBMS │ └── MongoDB advantages over RDBMS.pptx ├── MongoDB_dbpath_change │ └── MongoDB_dbpath_change.pptx ├── MongoDB_distinct_count │ ├── MongoDB Commands.txt │ └── Using distinct() and count().pptx ├── MongoDB_find_with_Example │ ├── MongoDB Commands.txt │ └── MongoDB Query Document using find() with Example.pptx ├── MongoDB_remove_method │ ├── MongoDB Commands.txt │ └── MongoDB Remove() Function with Examples.pptx ├── MongoDB_sort_limit_with_Examples │ └── MongoDB order with Sort() & Limit() Query with Examples.pptx ├── MongoDB_update_Document_update │ └── MongoDB - Update Document_update.pptx ├── MongoDB_update_Document_update_save │ └── MongoDB - Update Document.pptx ├── Mongo_Management_Studio │ └── Mongo Management Studio.pptx ├── Mongo_compass │ └── Mongo compass.pptx ├── Mongodb_Primary_Key_2 │ ├── MongoDB Commands.txt │ └── Mongodb Primary Key.pptx ├── NULL_Functions │ ├── Employee_DB.sql │ └── NULL Functions.pptx ├── NoSQL_DB │ └── NoSQL.pptx ├── NoSQL_Database_not_only │ └── NoSQL Database.pptx ├── Query_Operators_Array_get │ ├── MongoDB Commands.txt │ └── Query Operators.pptx ├── RDBMS │ └── RDBMS.pptx ├── ResourceBundleDemo_Read │ └── ResourceBundleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── MessageBundle_en_US.properties │ │ ├── MessageBundle_fr_FR.properties │ │ └── ResourceBundleDemo.class │ │ └── src │ │ ├── MessageBundle_en_US.properties │ │ ├── MessageBundle_fr_FR.properties │ │ └── ResourceBundleDemo.java ├── ResourceBundleDemo_containsKey │ └── ResourceBundleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.class │ │ └── src │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.java ├── ResourceBundleDemo_getString │ └── ResourceBundleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.class │ │ └── src │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.java ├── ResourceBundleDemo_getkeys │ └── ResourceBundleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.class │ │ └── src │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.java ├── ResourceBundleDemo_keySet │ └── ResourceBundleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.class │ │ └── src │ │ ├── MessageBundle_en_US.properties │ │ └── ResourceBundleDemo.java ├── ResourceBundle_Intro │ ├── ResourceBundle.pptx │ └── ResourceBundleDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── InternationalizationDemo.class │ │ ├── MessageBundle_en_US.properties │ │ └── MessageBundle_fr_FR.properties │ │ └── src │ │ ├── InternationalizationDemo.java │ │ ├── MessageBundle_en_US.properties │ │ └── MessageBundle_fr_FR.properties ├── SQL_ALL │ ├── Employee_DB.sql │ └── SQL ALL.pptx ├── SQL_ALTER_TABLE │ ├── ALTER TABLE Statement.pptx │ └── employee.sql ├── SQL_AND │ └── SQL AND Operator.pptx ├── SQL_ANY │ ├── Employee_DB.sql │ └── SQL ANY.pptx ├── SQL_AUTO_INCREMENT │ ├── SQL AUTO INCREMENT.pptx │ └── employee.sql ├── SQL_Aliases │ └── SQL Aliases.pptx ├── SQL_BETWEEN │ ├── The SQL BETWEEN Operator.pptx │ └── employee.sql ├── SQL_CASE │ ├── Employee_DB.sql │ └── SQL CASE.pptx ├── SQL_CHECK_Constraint │ ├── SQL CHECK Constraint.pptx │ └── employee.sql ├── SQL_COUNT_AVG_SUM │ └── SQL COUNT(), AVG() and SUM() Functions.pptx ├── SQL_CREATE_DATABASE │ └── SQL CREATE DATABASE Statement.pptx ├── SQL_CREATE_INDEX │ ├── SQL CREATE INDEX.pptx │ └── employee.sql ├── SQL_CREATE_TABLE │ └── SQL CREATE TABLE.pptx ├── SQL_Combining_AND_OR_NOT │ └── SQL Combining AND, OR and NOT.pptx ├── SQL_Comments │ └── SQL Comments.pptx ├── SQL_Constraints │ ├── SQL Constraints.pptx │ └── employee.sql ├── SQL_DEFAULT_Constraint │ └── SQL DEFAULT Constraint.pptx ├── SQL_DELETE │ └── SQL DELETE Statement.pptx ├── SQL_DROP_DATABASE │ └── DROP DATABASE.pptx ├── SQL_Dates │ ├── SQL Dates.pptx │ └── employee.sql ├── SQL_Drop_TABLE │ └── SQL Drop TABLE.pptx ├── SQL_EXISTS │ ├── SQL EXISTS.pptx │ └── employee.sql ├── SQL_FOREIGN_KEY_Constraint │ ├── SQL FOREIGN KEY Constraint.pptx │ └── employee.sql ├── SQL_FULL_OUTER_JOIN │ └── SQL FULL OUTER JOIN.pptx ├── SQL_GROUP_BY │ └── SQL GROUP BY Statement.pptx ├── SQL_HAVING_Clause │ └── SQL HAVING Clause.pptx ├── SQL_Hosting │ └── SQL Hosting.pptx ├── SQL_IN │ └── The SQL IN Operator.pptx ├── SQL_INNER_JOIN │ ├── SQL INNER JOIN.pptx │ └── employee.sql ├── SQL_INSERT_INTO │ ├── Employee_DB.sql │ └── SQL INSERT INTO Statement.pptx ├── SQL_INSERT_INTO_SELECT │ ├── Employee_DB.sql │ └── SQL INSERT INTO SELECT Statement.pptx ├── SQL_Injection │ ├── SQL Injection.pptx │ └── users.sql ├── SQL_Intro │ ├── SQL_Intro.pptx │ └── employee.sql ├── SQL_JOIN │ ├── SQL JOIN.pptx │ └── employee.sql ├── SQL_JOIN_types │ └── Different Types of SQL JOINs.pptx ├── SQL_LEFT_JOIN │ ├── SQL LEFT JOIN.pptx │ └── employee.sql ├── SQL_LIKE │ ├── SQL LIKE Operator.pptx │ └── employee.sql ├── SQL_MIN_MAX │ └── SQL MIN() and MAX() Functions.pptx ├── SQL_NOT │ └── SQL NOT Operator.pptx ├── SQL_NOTNULL │ ├── SQL NOT NULL.pptx │ └── employee.sql ├── SQL_NULL_Values │ └── SQL NULL Values.pptx ├── SQL_OR │ └── SQL OR Operator.pptx ├── SQL_ORDER BY │ ├── Employee_DB.sql │ └── SQL ORDER BY Keyword.pptx ├── SQL_One_to_Many │ ├── One to Many Relationship.pptx │ └── employee.sql ├── SQL_PRIMARY_KEY_Constraint │ ├── SQL PRIMARY KEY Constraint.pptx │ └── employee.sql ├── SQL_RIGHT_JOIN │ ├── SQL RIGHT JOIN.pptx │ └── employee.sql ├── SQL_SELECT │ └── SQL SELECT.pptx ├── SQL_SELECT_DISTINCT │ └── SELECT DISTINCT Examples.pptx ├── SQL_Stored_Procedures │ └── SQL Stored Procedures.pptx ├── SQL_TOP_LIMIT_ROWNUM │ └── The SQL SELECT TOP Clause.pptx ├── SQL_UNION │ ├── SQL UNION.pptx │ └── employee.sql ├── SQL_UNIQUE_Constraint │ ├── SQL UNIQUE Constraint.pptx │ └── employee.sql ├── SQL_UPDATE │ └── The SQL UPDATE Statement.pptx ├── SQL_VS_NoSQL_DB │ └── SQL vs NoSQL Database.pptx ├── SQL_VS_NoSQL_DB_V2 │ └── SQL vs NoSQL Database.pptx ├── SQL_Views │ ├── SQL Views.pptx │ └── employee.sql ├── SQL_WHERE_Clause │ ├── SQL WHERE Clause.pptx │ └── ~$SQL WHERE Clause.pptx ├── SpringBootConfigserverDemo │ ├── Spring Boot - Cloud Configuration Server.pptx │ ├── SpringBootConfigserverDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ └── ConfigserverApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ └── ConfigclientApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── config-client.properties ├── SpringBootDemo_CRUD │ ├── Employee_DB_Script.sql │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ └── EmployeeServiceController.java │ │ │ │ ├── exception │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ ├── mapper │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── impl │ │ │ │ └── EmployeeServiceImpl.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBootDemo_custom_error_controller │ ├── A Custom ErrorController.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── Application.java │ │ │ │ └── controller │ │ │ │ ├── MyAppController.java │ │ │ │ └── MyErrorController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── Helloworld │ │ └── HelloworldApplicationTests.java ├── SpringBootDemo_custom_error_page │ ├── Custom Error Pages.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── Application.java │ │ │ │ └── controller │ │ │ │ ├── MyAppController.java │ │ │ │ └── MyErrorController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── templates │ │ │ ├── error.html │ │ │ ├── error_404.html │ │ │ └── error_500.html │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── Helloworld │ │ └── HelloworldApplicationTests.java ├── SpringBoot_Admin_Client │ ├── 1 │ │ └── SpringBootDemo │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── AdminServerApplication.java │ │ │ │ │ └── controller │ │ │ │ │ └── WelcomeController.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ ├── 2 │ │ └── SpringBootDemo │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── HelloWorldApplication.java │ │ │ │ │ └── controller │ │ │ │ │ └── HelloController.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring Boot - Admin Client.pptx ├── SpringBoot_BatchService │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── batch │ │ │ │ │ ├── EmployeeItemProcessor.java │ │ │ │ │ └── JobCompletionNotificationListener.java │ │ │ │ │ ├── config │ │ │ │ │ └── BatchConfiguration.java │ │ │ │ │ ├── controller │ │ │ │ │ └── JobInvokerController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── employee.csv │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ ├── SpringBoot_BatchService.pptx │ └── ~$SpringBoot_BatchService.pptx ├── SpringBoot_CURL │ ├── Employee_DB_Script.sql │ ├── Spring Boot - CURL.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── exception │ │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── curl_commands.txt ├── SpringBoot_Consume_Ajax │ ├── Employee_DB_Script.sql │ ├── Spring Boot - Consuming RESTful Web Services.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ └── EmployeeServiceController.java │ │ │ │ ├── exception │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ ├── mapper │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ ├── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ │ └── viewcontroller │ │ │ │ └── EmployeeViewController.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── templates │ │ │ ├── add-employees.html │ │ │ └── view-employees.html │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBoot_Displaying_Custom_ErrorPages │ ├── Displaying Custom Error Pages.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── Application.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── templates │ │ │ └── error.html │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── SpringBoot_EnablingSwagger2 │ ├── Employee_DB_Script.sql │ ├── Spring Boot - Enabling Swagger2.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ └── EmployeeServiceController.java │ │ │ │ ├── exception │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ ├── mapper │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── impl │ │ │ │ └── EmployeeServiceImpl.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBoot_EurekaServer │ ├── Spring Boot - Eureka Server.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ └── EurekaClientApplication.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── SpringBootEurekaDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── EurekaServerApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBoot_Exception_Handling │ ├── Employee_DB_Script.sql │ ├── Spring Boot_Exception Handling.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ └── EmployeeServiceController.java │ │ │ │ ├── exception │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ ├── mapper │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── impl │ │ │ │ └── EmployeeServiceImpl.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBoot_HATEOAS_Example │ ├── Employee_DB_Script.sql │ ├── Spring Boot HATEOAS Example.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── config │ │ │ │ └── JerseyConfig.java │ │ │ │ ├── exception │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ ├── model │ │ │ │ ├── Employee.java │ │ │ │ └── Employees.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ ├── resource │ │ │ │ └── EmployeeResource.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── impl │ │ │ │ └── EmployeeServiceImpl.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBoot_JDBC_ThemeLeaf │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ └── templates │ │ │ │ └── employeeDetails.html │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── SpringBoot_JDBC_ThemeLeaf.pptx ├── SpringBoot_JMS_RabbitMQ_Example │ ├── SpringBootJMSProducer │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── config │ │ │ │ └── RabbitMQConfiguration.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ ├── SpringBootJMSReceiver │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── config │ │ │ │ │ └── RabbitMQConfiguration.java │ │ │ │ │ └── receiver │ │ │ │ │ └── JMSReceiver.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── SpringBoot_JMS_RabbitMQ Example.pptx ├── SpringBoot_JMS_RabbitMQ_Product_Example │ ├── SpringBootJMSProducer │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── config │ │ │ │ └── RabbitMQConfiguration.java │ │ │ │ └── model │ │ │ │ └── Product.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ ├── SpringBootJMSReceiver │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── config │ │ │ │ │ └── RabbitMQConfiguration.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ └── receiver │ │ │ │ │ └── JMSReceiver.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── SpringBoot_JMS_RabbitMQ_Product_Example.pptx ├── SpringBoot_JMS_RabbitMQ_Product_Manual_Ack │ ├── SpringBootJMSProducer │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── config │ │ │ │ └── RabbitMQConfiguration.java │ │ │ │ └── model │ │ │ │ └── Product.java │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ ├── SpringBootJMSReceiver │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── config │ │ │ │ │ └── RabbitMQConfiguration.java │ │ │ │ │ ├── model │ │ │ │ │ └── Product.java │ │ │ │ │ └── receiver │ │ │ │ │ └── JMSReceiver.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── SpringBoot_JMS_RabbitMQ_Product_Manual_Ack.pptx ├── SpringBoot_JPA │ ├── Employee_DB_Script.sql │ ├── Spring Boot - JPA.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── exception │ │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── employee_json.txt ├── SpringBoot_REST_Template_Junit │ ├── Employee_DB_Script.sql │ ├── Spring Boot - REST Template.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ └── EmployeeServiceController.java │ │ │ │ ├── exception │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ ├── repository │ │ │ │ └── EmployeeRepository.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── impl │ │ │ │ └── EmployeeServiceImpl.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── SpringBoot_RestTemplate │ ├── Employee_DB_Script.sql │ ├── Spring Boot - Rest Template.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── EmployeeExceptionController.java │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── exception │ │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── SpringBootRestTemplateDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── RestTemplateApplication.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeServiceController.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBoot_Security_JDBC │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── UserController.java │ │ │ │ │ └── securityconfig │ │ │ │ │ └── SpringSecurityConfig.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ ├── SpringBoot_Security_JDBC.pptx │ └── user.sql ├── SpringBoot_Security_basic_auth │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── UserController.java │ │ │ │ │ └── securityconfig │ │ │ │ │ └── SpringSecurityConfig.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ └── SpringBoot_Security.pptx ├── SpringBoot_ThemeLeaf_user │ ├── Spring Boot Thymeleaf View.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ └── UserController.java │ │ │ │ └── model │ │ │ │ └── User.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── templates │ │ │ ├── index.html │ │ │ └── user_information.html │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── SpringBoot_Tracing_logs │ ├── Spring Boot - Tracing Micro Service Logs.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── SpringBootRestTemplateDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── RestTemplateApplication.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeServiceController.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── SpringBoot_WebService_POST_Json │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ ├── SpringBoot_WebService_POST_Json.pptx │ └── employee_json.txt ├── SpringBoot_WebService_POST_XML │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── Helloworld │ │ │ └── HelloworldApplicationTests.java │ ├── SpringBoot_WebService_POST_XML.pptx │ ├── employee_json.txt │ └── employee_xml.txt ├── SpringBoot_cache │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ └── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── SpringBoot_cache.pptx ├── SpringBoot_disable_whiteLabel │ ├── Disabling the Whitelabel Error Page.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── Application.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── rest │ │ └── SpringBootApplicationTests.java ├── Spring_Boot_Create_Employee │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_Create_Employee.pptx ├── Spring_Boot_Delete_Employee │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_Delete_Employee.pptx ├── Spring_Boot_Enabling_HTTPS │ ├── Keytool.txt │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── keystore.p12 │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ └── controller │ │ │ │ │ └── HelloWorldController.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ └── Spring_Boot_Enabling_HTTPS.pptx ├── Spring_Boot_GetAll_Employees │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_GetAll_Employees.pptx ├── Spring_Boot_Get_Employee │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_Get_Employee.pptx ├── Spring_Boot_JNDI_Tomcat_9 │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ └── EmployeeController.java │ │ │ │ ├── mapper │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ └── repository │ │ │ │ └── EmployeeRepository.java │ │ │ └── resources │ │ │ └── application.properties │ ├── Spring_Boot_JNDI_Tomcat.pptx │ └── conf │ │ ├── context.xml │ │ └── server.xml ├── Spring_Boot_Update_Employee │ ├── Employee_DB_Script.sql │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── controller │ │ │ │ │ └── EmployeeServiceController.java │ │ │ │ │ ├── model │ │ │ │ │ └── Employee.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── Spring_Boot_Update_Employee.pptx ├── Springboot_Actuator │ ├── Spring Boot - Actuator.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ └── controller │ │ │ │ └── WelcomeController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── HelloWorld │ │ └── SpringBootApplicationTests.java ├── Springboot_Different_Layers │ └── Spring-boot-Different Layers.pptx ├── Springboot_Jersey_json_example │ ├── Employee_DB_Script.sql │ ├── Spring Boot Jersey Example.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── config │ │ │ │ │ └── JerseyConfig.java │ │ │ │ │ ├── model │ │ │ │ │ ├── Employee.java │ │ │ │ │ └── Employees.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ ├── resource │ │ │ │ │ └── EmployeeResource.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── employee_json.txt ├── Springboot_Jersey_security_role │ ├── Employee_DB_Script.sql │ ├── Spring Boot – Role Based Security with JAX-RS Annotations.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── config │ │ │ │ │ └── JerseyConfig.java │ │ │ │ │ ├── exception │ │ │ │ │ └── EmployeeNotfoundException.java │ │ │ │ │ ├── filter │ │ │ │ │ └── SecurityFilter.java │ │ │ │ │ ├── model │ │ │ │ │ ├── Employee.java │ │ │ │ │ └── Employees.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ ├── resource │ │ │ │ │ └── EmployeeResource.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── employee_json.txt ├── Springboot_Jersey_xml_example │ ├── Employee_DB_Script.sql │ ├── Spring Boot Jersey Example.pptx │ ├── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── config │ │ │ │ │ └── JerseyConfig.java │ │ │ │ │ ├── model │ │ │ │ │ ├── Employee.java │ │ │ │ │ └── Employees.java │ │ │ │ │ ├── repository │ │ │ │ │ └── EmployeeRepository.java │ │ │ │ │ ├── resource │ │ │ │ │ └── EmployeeResource.java │ │ │ │ │ └── service │ │ │ │ │ ├── EmployeeService.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── SpringBootApplicationTests.java │ └── employee_xml.txt ├── Springboot_REST_Custom_Validation │ ├── Spring REST Validation.pptx │ ├── SpringBootDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── BookApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── BookController.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── BookNotFoundException.java │ │ │ │ │ ├── BookUnSupportedFieldPatchException.java │ │ │ │ │ └── GlobalExceptionHandler.java │ │ │ │ │ ├── model │ │ │ │ │ └── Book.java │ │ │ │ │ ├── repository │ │ │ │ │ └── BookRepository.java │ │ │ │ │ └── validator │ │ │ │ │ ├── Author.java │ │ │ │ │ └── AuthorValidator.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── org.springframework.boot │ │ │ │ └── SpringBootDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ └── ram │ │ │ ├── BookApplication.class │ │ │ ├── controller │ │ │ └── BookController.class │ │ │ ├── exception │ │ │ ├── BookNotFoundException.class │ │ │ ├── BookUnSupportedFieldPatchException.class │ │ │ └── GlobalExceptionHandler.class │ │ │ ├── model │ │ │ └── Book.class │ │ │ ├── repository │ │ │ └── BookRepository.class │ │ │ └── validator │ │ │ ├── Author.class │ │ │ └── AuthorValidator.class │ ├── book.sql │ └── json.txt ├── Springboot_REST_JPA_Book │ ├── Spring Boot - JPA.pptx │ ├── SpringBootDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── BookApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── BookController.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── BookNotFoundException.java │ │ │ │ │ ├── BookUnSupportedFieldPatchException.java │ │ │ │ │ └── GlobalExceptionHandler.java │ │ │ │ │ ├── model │ │ │ │ │ └── Book.java │ │ │ │ │ └── repository │ │ │ │ │ └── BookRepository.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── org.springframework.boot │ │ │ │ └── SpringBootDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ └── ram │ │ │ ├── BookApplication.class │ │ │ ├── controller │ │ │ └── BookController.class │ │ │ ├── exception │ │ │ ├── BookNotFoundException.class │ │ │ ├── BookUnSupportedFieldPatchException.class │ │ │ └── GlobalExceptionHandler.class │ │ │ ├── model │ │ │ └── Book.class │ │ │ └── repository │ │ │ └── BookRepository.class │ ├── book.sql │ └── book_json.txt ├── Springboot_REST_Path_variable_Validation │ ├── Spring REST Validation.pptx │ ├── SpringBootDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── BookApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── BookController.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── BookNotFoundException.java │ │ │ │ │ ├── BookUnSupportedFieldPatchException.java │ │ │ │ │ └── GlobalExceptionHandler.java │ │ │ │ │ ├── model │ │ │ │ │ └── Book.java │ │ │ │ │ └── repository │ │ │ │ │ └── BookRepository.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── org.springframework.boot │ │ │ │ └── SpringBootDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ └── ram │ │ │ ├── BookApplication.class │ │ │ ├── controller │ │ │ └── BookController.class │ │ │ ├── exception │ │ │ ├── BookNotFoundException.class │ │ │ ├── BookUnSupportedFieldPatchException.class │ │ │ └── GlobalExceptionHandler.class │ │ │ ├── model │ │ │ └── Book.class │ │ │ └── repository │ │ │ └── BookRepository.class │ ├── book.sql │ └── json.txt ├── Springboot_REST_Validation │ ├── Spring REST Validation.pptx │ ├── SpringBootDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ ├── README.md │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── BookApplication.java │ │ │ │ │ ├── controller │ │ │ │ │ └── BookController.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── BookNotFoundException.java │ │ │ │ │ ├── BookUnSupportedFieldPatchException.java │ │ │ │ │ └── GlobalExceptionHandler.java │ │ │ │ │ ├── model │ │ │ │ │ └── Book.java │ │ │ │ │ └── repository │ │ │ │ │ └── BookRepository.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ └── target │ │ │ └── classes │ │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── org.springframework.boot │ │ │ │ └── SpringBootDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ │ ├── application.properties │ │ │ └── com │ │ │ └── ram │ │ │ ├── BookApplication.class │ │ │ ├── controller │ │ │ └── BookController.class │ │ │ ├── exception │ │ │ ├── BookNotFoundException.class │ │ │ ├── BookUnSupportedFieldPatchException.class │ │ │ └── GlobalExceptionHandler.class │ │ │ ├── model │ │ │ └── Book.class │ │ │ └── repository │ │ │ └── BookRepository.class │ ├── book.sql │ └── json.txt ├── Springboot_email │ ├── Sending e-mail with attachment.pptx │ └── SpringBootDemo │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── Application.java │ │ │ │ ├── controller │ │ │ │ └── EmailController.java │ │ │ │ └── helper │ │ │ │ └── EmailHelper.java │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── HelloWorld │ │ │ └── HelloWorldApplicationTests.java │ │ └── tree.jpg ├── Studio3T │ └── Studio 3T.pptx ├── UUIDDemo_Intro │ ├── UUID.pptx │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── UUIDDemo.class │ │ └── src │ │ └── UUIDDemo.java ├── UUIDDemo_clockSequence │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── UUIDDemo.class │ │ └── src │ │ └── UUIDDemo.java ├── UUIDDemo_different_ways │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── UUIDDemo1.class │ │ ├── UUIDDemo2.class │ │ └── UUIDDemo3.class │ │ └── src │ │ ├── UUIDDemo1.java │ │ ├── UUIDDemo2.java │ │ └── UUIDDemo3.java ├── UUIDDemo_getBits │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── UUIDDemo.class │ │ └── src │ │ └── UUIDDemo.java ├── UUIDDemo_node │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── UUIDDemo.class │ │ └── src │ │ └── UUIDDemo.java ├── UUIDDemo_timestamp │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── UUIDDemo.class │ │ └── src │ │ └── UUIDDemo.java ├── UUIDDemo_variant │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── UUIDDemo.class │ │ └── src │ │ └── UUIDDemo.java ├── UUIDDemo_version │ └── UUIDDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── UUIDDemo.class │ │ └── src │ │ └── UUIDDemo.java ├── Understanding_Impact_Indexes │ ├── MongoDB Commands.txt │ └── Understanding Impact of Indexes.pptx ├── Understanding_Impact_Indexes_time │ ├── MongoDB Commands.txt │ └── Understanding Impact of Indexes.pptx ├── Uninstall_MongoDB │ └── Uninstall_MongoDB.pptx ├── WSDL_UDDI │ └── What is WSDL and UDDI.pptx ├── What_REST_WebServices_1 │ └── What are REST WebServices_1.pptx ├── What_are_SOAP_WebServices │ └── What are SOAP Web Services.pptx ├── What_is_HATEOAS │ └── What is HATEOAS.pptx ├── What_is_NoSQL │ └── What is NoSQL.pptx ├── What_is_WebService │ └── What is a Web Service.pptx ├── What_is_networking │ └── What is networking.pptx ├── What_is_networking_V2 │ └── What is networking_V2.pptx ├── What_is_networking_V3 │ └── What is networking_V3.pptx ├── What_is_networking_V4 │ └── What is networking_V4.pptx ├── XML_Attributes │ ├── XML Attributes.pptx │ └── XML │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── employee.xml │ │ └── src │ │ └── employee.xml ├── XML_Elements │ ├── XML Elements.pptx │ └── XML │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── employees.xml │ │ └── src │ │ └── employees.xml ├── XML_Elements_Extensible │ └── XML Elements Extensible.pptx ├── XML_Entity_References │ ├── Entity References.pptx │ └── XML │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── employee.xml │ │ └── src │ │ └── employee.xml ├── XML_Intro │ ├── XML Intro.pptx │ └── XML │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── employee.xml │ │ ├── employee_new.xml │ │ └── employees.xml │ │ └── src │ │ ├── employee.xml │ │ ├── employee_new.xml │ │ └── employees.xml ├── XML_Namespaces │ └── XML Namespaces.pptx ├── XML_Syntax_Rules │ ├── XML Syntax Rules.pptx │ └── XML │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── employees.xml │ │ └── src │ │ └── employees.xml ├── XML_Tree │ ├── XML Tree.pptx │ └── XML │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── employees.xml │ │ └── src │ │ └── employees.xml ├── keystore_explorer │ └── keystore explorer.pptx └── robomongo │ └── robomongo.pptx ├── Java_2019 ├── DateFormatDemo_DateFormat_Class │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_Parse │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_format │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── DateFormatDemo1.class │ │ │ ├── DateFormatDemo2.class │ │ │ └── DateFormatDemo3.class │ │ └── src │ │ │ ├── DateFormatDemo1.java │ │ │ ├── DateFormatDemo2.java │ │ │ └── DateFormatDemo3.java │ ├── DateFormatDemo1_Output.txt │ ├── DateFormatDemo2_Output.txt │ └── DateFormatDemo3_Output.txt ├── DateFormatDemo_format_stringbuffer │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_getAvailableLocales │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_getCalendar │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_getDateTimeInstance │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_getDateTimeInstance_date_locale-time_style │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_getDateTimeInstance_date_time_style │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_getNumberFormat │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── DateFormatDemo_getTimeInstance │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── DateFormatDemo1.class │ │ │ ├── DateFormatDemo2.class │ │ │ └── DateFormatDemo3.class │ │ └── src │ │ │ ├── DateFormatDemo1.java │ │ │ ├── DateFormatDemo2.java │ │ │ └── DateFormatDemo3.java │ ├── DateFormatDemo1_Output.txt │ ├── DateFormatDemo2_Output.txt │ └── DateFormatDemo3_Output.txt ├── DateFormatDemo_isLenient │ ├── DateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── DateFormatDemo.class │ │ └── src │ │ │ └── DateFormatDemo.java │ └── Output.txt ├── FormatterDemo_Intro │ ├── FormatterDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── FormatterDemo.class │ │ └── src │ │ │ └── FormatterDemo.java │ └── Output.txt ├── FormatterDemo_format_locale │ ├── FormatterDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ └── FormatterDemo.class │ │ └── src │ │ │ └── FormatterDemo.java │ └── Output.txt ├── JMS API Programming Model │ └── JMS API Programming Model.pptx ├── JMS-queues and topics │ └── JMS-queues and topics.pptx ├── JMS_Intro │ └── JMS_Intro.pptx ├── ObservableDemo_deleteObservers │ ├── ObservableDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── JohnObserver.class │ │ │ ├── NokioMobilePriceObservable.class │ │ │ ├── ObservableDemo.class │ │ │ └── PeterObserver.class │ │ └── src │ │ │ ├── JohnObserver.java │ │ │ ├── NokioMobilePriceObservable.java │ │ │ ├── ObservableDemo.java │ │ │ └── PeterObserver.java │ └── Output.txt ├── ObservableDemo_example │ ├── Observable.pptx │ ├── ObservableDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── JohnObserver.class │ │ │ ├── NokioMobilePriceObservable.class │ │ │ ├── ObservableDemo.class │ │ │ └── PeterObserver.class │ │ └── src │ │ │ ├── JohnObserver.java │ │ │ ├── NokioMobilePriceObservable.java │ │ │ ├── ObservableDemo.java │ │ │ └── PeterObserver.java │ └── Output.txt ├── ObservableDemo_notify_observer │ ├── Observable.pptx │ ├── ObservableDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── JohnObserver.class │ │ │ ├── NokioMobilePriceObservable.class │ │ │ ├── ObservableDemo.class │ │ │ └── PeterObserver.class │ │ └── src │ │ │ ├── JohnObserver.java │ │ │ ├── NokioMobilePriceObservable.java │ │ │ ├── ObservableDemo.java │ │ │ └── PeterObserver.java │ └── Output.txt ├── RandomDemo_Intro │ ├── Output.txt │ ├── Random.pptx │ └── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── RandomDemo.class │ │ └── src │ │ └── RandomDemo.java ├── RandomDemo_Nextmethods │ ├── Output.txt │ └── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── RandomDemo1.class │ │ ├── RandomDemo2.class │ │ ├── RandomDemo3.class │ │ └── RandomDemo4.class │ │ └── src │ │ ├── RandomDemo1.java │ │ ├── RandomDemo2.java │ │ ├── RandomDemo3.java │ │ └── RandomDemo4.java ├── RandomDemo_nextBytes │ ├── Output.txt │ └── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── RandomDemo.class │ │ └── RandomDemo1.class │ │ └── src │ │ └── RandomDemo.java ├── RandomDemo_nextGaussian │ ├── Output.txt │ └── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── RandomDemo.class │ │ └── src │ │ └── RandomDemo.java ├── RandomDemo_nextInt_bound │ ├── Output.txt │ └── RandomDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── RandomDemo.class │ │ └── src │ │ └── RandomDemo.java ├── SimpleDateFormatDemo_Intro │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_Parse │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_applyLocalizedPattern │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_applyPattern │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_formatToCharacterIterator │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_format_date_pattern │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_format_sb_fieldpos │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_toLocalizedPattern │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── SimpleDateFormatDemo_toPattern │ ├── Output.txt │ └── SimpleDateFormatDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── SimpleDateFormatDemo.class │ │ └── src │ │ └── SimpleDateFormatDemo.java ├── TimeZoneDemo_getDSTSavings │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_getOffset │ ├── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ │ ├── TimeZoneDemo1.class │ │ │ └── TimeZoneDemo2.class │ │ └── src │ │ │ ├── TimeZoneDemo1.java │ │ │ └── TimeZoneDemo2.java │ ├── TimeZoneDemo1_Output.txt │ └── TimeZoneDemo2_Output.txt ├── TimeZoneDemo_getRawOffset │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_getTimeZone_id │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_hasSameRules │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_inDaylightTime │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_observesDaylightTime │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_setDefault │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_setID │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_setRawOffset │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimeZoneDemo_useDaylightTime │ ├── Output.txt │ └── TimeZoneDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── TimeZoneDemo.class │ │ └── src │ │ └── TimeZoneDemo.java ├── TimerDemo_Intro │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_ScheduleAtFixedRate_delay_repeat │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_Schedule_Once │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_Schedule_delay_repeat │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_Schedule_firsttime_repeat │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_Schedule_firsttime_repeat_scheduleAtFixedRate │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_Task_Intro_V1 │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTask.class │ │ ├── EmailTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTask.java │ │ ├── EmailTask.java │ │ └── TimerDemo.java ├── TimerDemo_cancel │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_isDaemon │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ReminderTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── ReminderTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_name_isDaemon │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ReminderTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── ReminderTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_purge │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── CleanUpTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── CleanUpTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_scheduledExecutionTime │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ReminderTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── ReminderTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_thread_name │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ReminderTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── ReminderTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_timetask_cancel_V1 │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ReminderTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── ReminderTimerTask.java │ │ └── TimerDemo.java ├── TimerDemo_timetask_cancel_V2 │ ├── Output.txt │ └── TimerDemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ ├── ReminderTimerTask.class │ │ └── TimerDemo.class │ │ └── src │ │ ├── ReminderTimerTask.java │ │ └── TimerDemo.java ├── jmsdemo_send │ ├── JMS_Queue_ActiveMQ_Send.pptx │ ├── Output.txt │ └── jmsdemo │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── ram │ │ │ │ └── jms │ │ │ │ └── MessageSender.java │ │ └── test │ │ │ └── java │ │ │ └── ram │ │ │ └── jms │ │ │ └── AppTest.java │ │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── ram │ │ │ │ └── jms │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ └── ram │ │ │ └── jms │ │ │ └── MessageSender.class │ │ └── test-classes │ │ └── ram │ │ └── jms │ │ └── AppTest.class └── jmsdemo_send_receive │ ├── JMS_Queue_ActiveMQ_Send_receive.pptx │ ├── MessageReceiver_Output.txt │ ├── MessageSender_Output.txt │ └── jmsdemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ └── java │ │ │ └── ram │ │ │ └── jms │ │ │ ├── MessageReceiver.java │ │ │ └── MessageSender.java │ └── test │ │ └── java │ │ └── ram │ │ └── jms │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── ram │ │ │ └── jms │ │ │ ├── pom.properties │ │ │ └── pom.xml │ └── ram │ │ └── jms │ │ ├── MessageReceiver.class │ │ └── MessageSender.class │ └── test-classes │ └── ram │ └── jms │ └── AppTest.class ├── Later ├── Java_Later │ ├── API │ │ ├── 1 │ │ │ └── What is an API.pptx │ │ ├── 2 │ │ │ └── How to use an API.pptx │ │ ├── 3 │ │ │ └── Web vs API Server.pptx │ │ ├── 4 │ │ │ └── History of API.pptx │ │ ├── 5 │ │ │ └── What are Webservices.pptx │ │ ├── 6 │ │ │ └── Web Services Overview.pptx │ │ ├── 7 │ │ │ └── Why do we need HTTP.pptx │ │ ├── 8 │ │ │ └── Web Service Message Formats.pptx │ │ ├── 9 │ │ │ └── Web Service Interfaces.pptx │ │ ├── 10 │ │ │ └── HTTP Message Structure.pptx │ │ ├── 11 │ │ │ └── HTTP Request methods.pptx │ │ ├── 12 │ │ │ └── Query Parameters.pptx │ │ ├── 13 │ │ │ └── Path Parameters.pptx │ │ ├── 14 │ │ │ └── HTTP Headers.pptx │ │ ├── 15 │ │ │ └── Content_Type_Headers.pptx │ │ ├── 16 │ │ │ └── Authorization_Header.pptx │ │ ├── 17 │ │ │ └── Cookie_Header.pptx │ │ ├── 18 │ │ │ └── HTTP Body.pptx │ │ ├── 19 │ │ │ └── HTTP Status Code.pptx │ │ └── 20 │ │ │ └── Make SOAP requests from Postman.pptx │ ├── Apache │ │ ├── Apache Install Linux Make.pptx │ │ ├── Apache Install Linux.pptx │ │ └── Apache Uninstall Linux.pptx │ ├── Java_Util_package │ │ └── Internationalization │ │ │ ├── ListResourceBundle │ │ │ └── 1 │ │ │ │ ├── ListResourceBundle.pptx │ │ │ │ └── ListResourceBundleDemo │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ ├── bin │ │ │ │ ├── MessageBundle_en_US.class │ │ │ │ ├── MessageBundle_fr_FR.class │ │ │ │ └── ResourceBundleDemo.class │ │ │ │ └── src │ │ │ │ ├── ListResourceBundleDemo.java │ │ │ │ ├── MessageBundle_en_US.java │ │ │ │ └── MessageBundle_fr_FR.java │ │ │ └── PropertyResourceBundle │ │ │ ├── 1 │ │ │ ├── PropertyResourceBundle.pptx │ │ │ └── PropertyResourceBundleDemo │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ ├── bin │ │ │ │ ├── MessageBundle_en_US.properties │ │ │ │ └── PropertyResourceBundleDemo.class │ │ │ │ └── src │ │ │ │ ├── MessageBundle_en_US.properties │ │ │ │ └── PropertyResourceBundleDemo.java │ │ │ ├── 2 │ │ │ └── PropertyResourceBundleDemo │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ ├── bin │ │ │ │ ├── MessageBundle_en_US.properties │ │ │ │ └── PropertyResourceBundleDemo.class │ │ │ │ └── src │ │ │ │ ├── MessageBundle_en_US.properties │ │ │ │ └── PropertyResourceBundleDemo.java │ │ │ └── 3 │ │ │ └── PropertyResourceBundleDemo │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── bin │ │ │ ├── MessageBundle_en_US.properties │ │ │ └── PropertyResourceBundleDemo.class │ │ │ └── src │ │ │ ├── MessageBundle_en_US.properties │ │ │ └── PropertyResourceBundleDemo.java │ ├── MongoDB_2 │ │ ├── 80 │ │ │ └── Model Tree Structures with Parent References.pptx │ │ ├── 81 │ │ │ └── Model Tree Structures with Child References.pptx │ │ ├── 82 │ │ │ ├── Model Tree Structures with an Array of Ancestors.pptx │ │ │ └── MongoDB Commands.txt │ │ ├── 83 │ │ │ └── One-To-One Relationship.pptx │ │ ├── 84 │ │ │ └── One-To-many Relationship.pptx │ │ ├── 85 │ │ │ └── many-To-many Relationship.pptx │ │ ├── 86 │ │ │ ├── How to Create User & add Role root in MongoDB.pptx │ │ │ └── MongoDB Commands.txt │ │ ├── 87 │ │ │ ├── How to Create User & add Role in MongoDB.pptx │ │ │ └── MongoDB Commands.txt │ │ ├── 88 │ │ │ ├── MongoDB Commands.txt │ │ │ └── MongoDB Create User for Single Database.pptx │ │ ├── 89 │ │ │ ├── MongoDB Commands.txt │ │ │ └── MongoDB Create User and multiple roles for Single Database.pptx │ │ ├── 90 │ │ │ ├── MongoDB Commands.txt │ │ │ ├── MongoDB Drop User.pptx │ │ │ └── ~$MongoDB Create User and multiple roles for Single Database.pptx │ │ ├── 91 │ │ │ ├── MongoDB built-in-roles.pptx │ │ │ └── ~$MongoDB Create User and multiple roles for Single Database.pptx │ │ ├── 92 │ │ │ ├── MongoDB natural Operator.pptx │ │ │ └── ~$MongoDB Create User and multiple roles for Single Database.pptx │ │ ├── 93 │ │ │ ├── MongoDB explain() method parameter options.pptx │ │ │ └── ~$MongoDB Create User and multiple roles for Single Database.pptx │ │ ├── 94 │ │ │ └── MongoDB Group by using Reduce Function.pptx │ │ ├── 95 │ │ │ └── MongoDB Map-Reduce.pptx │ │ ├── 96 │ │ │ └── MongoDB Namespace.pptx │ │ ├── 97 │ │ │ └── What is Replication.pptx │ │ ├── 98 │ │ │ └── Understanding Replication Architecture.pptx │ │ ├── 99 │ │ │ └── Understanding Arbiter and Heartbeat.pptx │ │ ├── 100 │ │ │ └── Election for Primary Replica Set Elections.pptx │ │ ├── 101 │ │ │ └── Voting And Non-voting Members.pptx │ │ ├── 102 │ │ │ └── Replica Set Setpup.pptx │ │ └── Pending.txt │ ├── POC │ │ ├── gs-messaging-rabbitmq │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.adoc │ │ │ ├── README.adoc │ │ │ ├── complete │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── build.gradle │ │ │ │ ├── docker-compose.yml │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── hello │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ ├── Receiver.java │ │ │ │ │ │ │ └── Runner.java │ │ │ │ │ └── resources │ │ │ │ │ │ ├── application.properties │ │ │ │ │ │ └── log4j.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── hello │ │ │ │ │ └── ApplicationTest.java │ │ │ ├── initial │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── hello │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ └── Receiver.java │ │ │ │ │ └── resources │ │ │ │ │ └── log4j.properties │ │ │ └── test │ │ │ │ └── run.sh │ │ ├── selenium-example-master │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ └── org.eclipse.m2e.core.prefs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ └── img │ │ │ │ │ └── autotests.gif │ │ │ ├── pom.xml │ │ │ ├── selenium-example.iml │ │ │ ├── src │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── movoto │ │ │ │ │ └── selenium │ │ │ │ │ └── example │ │ │ │ │ └── ChromeDriverTest.java │ │ │ └── webdriver │ │ │ │ ├── chromedriver │ │ │ │ ├── chromedriver.exe │ │ │ │ └── geckodriver │ │ └── selenium │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.m2e.core.prefs │ │ │ ├── pom.xml │ │ │ ├── selenium_command.txt │ │ │ ├── src │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── SeleniumStandaloneServerTest.java │ │ │ ├── target │ │ │ ├── maven-status │ │ │ │ └── maven-compiler-plugin │ │ │ │ │ ├── compile │ │ │ │ │ └── default-compile │ │ │ │ │ │ └── inputFiles.lst │ │ │ │ │ └── testCompile │ │ │ │ │ └── default-testCompile │ │ │ │ │ ├── createdFiles.lst │ │ │ │ │ └── inputFiles.lst │ │ │ ├── surefire-reports │ │ │ │ ├── SeleniumStandaloneServerTest.txt │ │ │ │ └── TEST-SeleniumStandaloneServerTest.xml │ │ │ └── test-classes │ │ │ │ └── SeleniumStandaloneServerTest.class │ │ │ └── webdriver │ │ │ ├── chromedriver │ │ │ ├── chromedriver.exe │ │ │ └── geckodriver │ ├── RESTFul_Spring │ │ ├── 1 │ │ │ └── Postman Overview.pptx │ │ ├── 2 │ │ │ └── Resource and collection URI.pptx │ │ ├── 3 │ │ │ └── HTTP Methods.pptx │ │ ├── 4 │ │ │ └── HTTP Headers.pptx │ │ ├── 5 │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── Employee.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── SpringBoot_WebService_XML_JSON.pptx │ │ ├── 6 │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── Employee.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── SpringBoot_SetResponse_StatusCode.pptx │ │ ├── 7 │ │ │ ├── Reading HTTP POST Request Body.pptx │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── Employee.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── json.txt │ │ ├── 8 │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── Employee.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ ├── Validating HTTP POST Request Body.pptx │ │ │ └── json.txt │ │ ├── 4.1 │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── Employee.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── SpringBoot_Returning Java Object as Return.pptx │ │ ├── 4.2 │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ └── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── SpringBoot_Reading Path Variables with.pptx │ │ ├── 4.3 │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ └── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── SpringBoot_Reading Query String Request Parameters.pptx │ │ ├── 4.4 │ │ │ ├── SpringBootDemo │ │ │ │ ├── .gitignore │ │ │ │ ├── .mvn │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ │ └── maven-wrapper.properties │ │ │ │ ├── mvnw │ │ │ │ ├── mvnw.cmd │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── ram │ │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ │ └── controller │ │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── application.properties │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── Helloworld │ │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── SpringBoot_Making Parameters Optional or Required.pptx │ │ └── 4.5 │ │ │ ├── SpringBootDemo │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── ram │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ └── controller │ │ │ │ │ │ └── EmployeeController.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── Helloworld │ │ │ │ └── HelloworldApplicationTests.java │ │ │ └── SpringBoot_Adding Methods to Handle POST.pptx │ ├── Springboot_Jun_2020 │ │ ├── 1 │ │ │ └── Springboot Why.pptx │ │ ├── 2 │ │ │ └── Understanding Springboot Project.pptx │ │ └── 3 │ │ │ └── Springboot freemarker.pptx │ ├── maven │ │ ├── 1 │ │ │ └── Maven Example.pptx │ │ └── New Text Document.txt │ └── pending.txt ├── Pending.txt └── Spring_Later │ └── pending.txt └── Spring_2019 ├── ActiveMQ_Setup └── Spring_JMS_ActiveMQ_Setup.pptx ├── AnnotationSessionFactoryBean_Spring └── AnnotationSessionFactoryBean in Spring.pptx ├── HibernateTemplate_in_Spring └── HibernateTemplate_in_Spring.pptx ├── HibernateTransactionManager_Spring └── HibernateTransactionManager in Spring.pptx ├── Spring4_hibernate4_Annotation_Config ├── Output.txt ├── Spring 4 + Hibernate 4 + MySQL+ Maven Integration example_Annotations.pptx ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── AppMain.java │ │ │ │ ├── configuration │ │ │ │ ├── AppConfig.java │ │ │ │ └── HibernateConfiguration.java │ │ │ │ ├── dao │ │ │ │ ├── AbstractDao.java │ │ │ │ ├── EmployeeDao.java │ │ │ │ └── EmployeeDaoImpl.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ └── application.properties │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ ├── application.properties │ │ └── com │ │ └── ram │ │ ├── AppMain.class │ │ ├── configuration │ │ ├── AppConfig.class │ │ └── HibernateConfiguration.class │ │ ├── dao │ │ ├── AbstractDao.class │ │ ├── EmployeeDao.class │ │ └── EmployeeDaoImpl.class │ │ ├── model │ │ └── Employee.class │ │ └── service │ │ ├── EmployeeService.class │ │ └── EmployeeServiceImpl.class └── employee.sql ├── Spring4_hibernate4_XML_Config ├── Output.txt ├── Spring 4 + Hibernate 4 + MySQL+ Maven Integration example_XML.pptx ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── AppMain.java │ │ │ │ ├── dao │ │ │ │ ├── AbstractDao.java │ │ │ │ ├── EmployeeDao.java │ │ │ │ └── EmployeeDaoImpl.java │ │ │ │ ├── model │ │ │ │ └── Employee.java │ │ │ │ └── service │ │ │ │ ├── EmployeeService.java │ │ │ │ └── EmployeeServiceImpl.java │ │ │ └── resources │ │ │ ├── application.properties │ │ │ └── applicationContext.xml │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── application.properties │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── AppMain.class │ │ │ ├── dao │ │ │ ├── AbstractDao.class │ │ │ ├── EmployeeDao.class │ │ │ └── EmployeeDaoImpl.class │ │ │ ├── model │ │ │ └── Employee.class │ │ │ └── service │ │ │ ├── EmployeeService.class │ │ │ └── EmployeeServiceImpl.class │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst └── employee.sql ├── SpringDemo_BeanPropertyRowMapper ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_BeanPropertyRowMapper_multi_rows ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Caching_Annotation └── Caching Annotation.pptx ├── SpringDemo_Define_an_E-mail_template ├── Define an E-mail template in bean configuration file.pptx ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── mail │ │ │ │ └── EMail.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── mail │ │ └── EMail.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Email_Annotation ├── Output.txt ├── Spring Email Integration Tutorial with Annotations.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── bin │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── websystique │ │ │ └── spring │ │ │ ├── configuration │ │ │ ├── AppConfig.class │ │ │ └── SampleEmailApplication.class │ │ │ ├── model │ │ │ ├── CustomerInfo.class │ │ │ └── ProductOrder.class │ │ │ └── service │ │ │ ├── MailService.class │ │ │ ├── MailServiceImpl.class │ │ │ ├── OrderService.class │ │ │ └── OrderServiceImpl.class │ └── target │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ ├── pom.xml │ ├── src │ └── main │ │ └── java │ │ └── com │ │ └── ram │ │ ├── App.java │ │ ├── configuration │ │ └── AppConfig.java │ │ └── service │ │ ├── MailService.java │ │ └── MailServiceImpl.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ └── com │ │ └── ram │ │ ├── App.class │ │ ├── configuration │ │ └── AppConfig.class │ │ └── service │ │ ├── MailService.class │ │ ├── MailServiceImpl$1.class │ │ └── MailServiceImpl.class │ └── maven-status │ └── maven-compiler-plugin │ └── compile │ └── default-compile │ ├── createdFiles.lst │ └── inputFiles.lst ├── SpringDemo_Email_Freemarker ├── Output.txt ├── Spring Email using Freemarker Template library.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ └── AppConfig.java │ │ │ ├── model │ │ │ ├── CustomerInfo.java │ │ │ └── ProductOrder.java │ │ │ └── service │ │ │ ├── MailService.java │ │ │ ├── MailServiceImpl.java │ │ │ ├── OrderService.java │ │ │ └── OrderServiceImpl.java │ │ └── resources │ │ ├── fmtemplates │ │ └── fm_mailTemplate.txt │ │ └── linux-icon.png │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── com │ │ └── ram │ │ │ ├── App.class │ │ │ ├── configuration │ │ │ └── AppConfig.class │ │ │ ├── model │ │ │ ├── CustomerInfo.class │ │ │ └── ProductOrder.class │ │ │ └── service │ │ │ ├── MailService.class │ │ │ ├── MailServiceImpl$1.class │ │ │ ├── MailServiceImpl.class │ │ │ ├── OrderService.class │ │ │ └── OrderServiceImpl.class │ ├── fmtemplates │ │ └── fm_mailTemplate.txt │ └── linux-icon.png │ └── maven-status │ └── maven-compiler-plugin │ └── compile │ └── default-compile │ ├── createdFiles.lst │ └── inputFiles.lst ├── SpringDemo_Email_attachment ├── Output.txt ├── Sending e-mail with attachment.pptx ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── core │ │ │ │ │ └── App.java │ │ │ │ │ └── mail │ │ │ │ │ └── EMail.java │ │ │ └── resources │ │ │ │ └── applicationContext.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── mail │ │ │ └── EMail.class │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── test-classes │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.class └── tree.jpg ├── SpringDemo_Email_attachment_Annotation ├── Output.txt ├── Spring Email With Attachment using Annotations.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── bin │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── websystique │ │ │ └── spring │ │ │ ├── configuration │ │ │ ├── AppConfig.class │ │ │ └── SampleEmailApplication.class │ │ │ ├── model │ │ │ ├── CustomerInfo.class │ │ │ └── ProductOrder.class │ │ │ └── service │ │ │ ├── MailService.class │ │ │ ├── MailServiceImpl.class │ │ │ ├── OrderService.class │ │ │ └── OrderServiceImpl.class │ └── target │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ └── AppConfig.java │ │ │ └── service │ │ │ ├── MailService.java │ │ │ └── MailServiceImpl.java │ │ └── resources │ │ └── tree.jpg │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── com │ │ └── ram │ │ │ ├── App.class │ │ │ ├── configuration │ │ │ └── AppConfig.class │ │ │ └── service │ │ │ ├── MailService.class │ │ │ ├── MailServiceImpl$1.class │ │ │ └── MailServiceImpl.class │ └── tree.jpg │ └── maven-status │ └── maven-compiler-plugin │ └── compile │ └── default-compile │ ├── createdFiles.lst │ └── inputFiles.lst ├── SpringDemo_Gmail_MailSender ├── Output.txt ├── Sending E-mail via Gmail SMTP server with MailSender.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── mail │ │ │ │ └── Email.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── mail │ │ └── Email.class │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Gmail_MailSender_Multiple_Receivers ├── Output.txt ├── Sending mails to multiple receivers.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── mail │ │ │ │ └── EMail.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── mail │ │ └── EMail.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Gmail_MimeMessagePreparator ├── Output.txt ├── Spring MimeMessagePreparator Example.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── mail │ │ │ │ └── Email.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── mail │ │ ├── Email$1.class │ │ └── Email.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Hibernate_Integration_3Version ├── Output.txt ├── Spring Hibernate Integration Example.pptx ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ └── core │ │ │ │ │ ├── App.java │ │ │ │ │ ├── dao │ │ │ │ │ ├── EmployeeDAO.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ ├── applicationContext.xml │ │ │ │ └── hibernate.cfg.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── mkyong │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ ├── com │ │ │ └── ram │ │ │ │ └── core │ │ │ │ ├── App.class │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.class │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.class │ │ │ │ └── model │ │ │ │ └── Employee.class │ │ └── hibernate.cfg.xml │ │ └── test-classes │ │ └── com │ │ └── mkyong │ │ └── core │ │ └── AppTest.class └── employee.sql ├── SpringDemo_JAXB_Annotation_Config ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── bin │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── company.xml │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── core │ │ │ │ ├── App.class │ │ │ │ ├── XMLConverter.class │ │ │ │ ├── config │ │ │ │ └── AppConfig.class │ │ │ │ └── model │ │ │ │ └── Company.class │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── mkyong │ │ │ └── core │ │ │ └── AppTest.class │ └── target │ │ ├── classes │ │ └── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ ├── company.xml │ ├── pom.xml │ ├── src │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ ├── App.java │ │ │ ├── XMLConverter.java │ │ │ ├── config │ │ │ └── AppConfig.java │ │ │ └── model │ │ │ └── Company.java │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ └── com │ │ └── ram │ │ └── core │ │ ├── App.class │ │ ├── XMLConverter.class │ │ ├── config │ │ └── AppConfig.class │ │ └── model │ │ └── Company.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_JAXB_XML_Config ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── company.xml │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── core │ │ │ │ ├── App.java │ │ │ │ ├── XMLConverter.java │ │ │ │ └── model │ │ │ │ └── Company.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ └── core │ │ ├── App.class │ │ ├── XMLConverter.class │ │ └── model │ │ └── Company.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_JDBCTemplate_Insert ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_JDBC_Insert_find ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ ├── Spring-Module.xml │ │ │ ├── database │ │ │ └── Spring-Datasource.xml │ │ │ └── employee │ │ │ └── Spring-Employee.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── Spring-Module.xml │ ├── com │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── employee │ │ │ ├── dao │ │ │ ├── EmployeeDAO.class │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.class │ │ │ └── model │ │ │ └── Employee.class │ ├── database │ │ └── Spring-Datasource.xml │ └── employee │ │ └── Spring-Employee.xml │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_JdbcDaoSupport_Insert ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_NamedParameterJdbcDaoSupport_Insert ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Named_Param_SqlParamSrc_batchUpdate ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Named_Param_batchUpdate ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Object_XML_mapping_castor_Annotation_config ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── bin │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── customer.xml │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ └── core │ │ │ │ │ ├── App.class │ │ │ │ │ ├── XMLConverter.class │ │ │ │ │ ├── config │ │ │ │ │ └── AppConfig.class │ │ │ │ │ └── model │ │ │ │ │ └── Customer.class │ │ │ └── resources │ │ │ │ ├── castor.properties │ │ │ │ └── customer_mapping.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── mkyong │ │ │ └── core │ │ │ └── AppTest.class │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ ├── castor.properties │ │ └── customer_mapping.xml │ ├── customer.xml │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── core │ │ │ │ ├── App.java │ │ │ │ ├── XMLConverter.java │ │ │ │ ├── config │ │ │ │ └── AppConfig.java │ │ │ │ └── model │ │ │ │ └── Customer.java │ │ └── resources │ │ │ ├── castor.properties │ │ │ └── customer_mapping.xml │ └── test │ │ └── java │ │ └── com │ │ └── mkyong │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── castor.properties │ ├── com │ │ └── ram │ │ │ └── core │ │ │ ├── App.class │ │ │ ├── XMLConverter.class │ │ │ ├── config │ │ │ └── AppConfig.class │ │ │ └── model │ │ │ └── Customer.class │ └── customer_mapping.xml │ └── test-classes │ └── com │ └── mkyong │ └── core │ └── AppTest.class ├── SpringDemo_Object_XML_mapping_castor_XML_config ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── customer.xml │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── core │ │ │ │ ├── App.java │ │ │ │ ├── XMLConverter.java │ │ │ │ └── model │ │ │ │ └── Customer.java │ │ └── resources │ │ │ ├── applicationContext.xml │ │ │ ├── castor.properties │ │ │ └── customer_mapping.xml │ └── test │ │ └── java │ │ └── com │ │ └── mkyong │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ ├── castor.properties │ ├── com │ │ └── ram │ │ │ └── core │ │ │ ├── App.class │ │ │ ├── XMLConverter.class │ │ │ └── model │ │ │ └── Customer.class │ └── customer_mapping.xml │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── mkyong │ └── core │ └── AppTest.class ├── SpringDemo_Query_multi_rows ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Query_single_value ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_ResultSetExtractor_Query_multi_rows ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ ├── EmployeeDAOImpl$1.class │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Retrive_auto_key ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ ├── EmployeeDAOImpl$1.class │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_RowMapper ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ ├── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── mapper │ │ │ │ │ └── EmployeeRowMapper.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ ├── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── mapper │ │ │ └── EmployeeRowMapper.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Send_Email_host_Provider ├── Example of Sending mail in Spring by Server provided by host provider.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── mail │ │ │ │ └── EMail.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── mail │ │ ├── EMail$1.class │ │ └── EMail.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_SimpleJDBCInsert_data ├── Employee.sql ├── Insert_SimpleJdbcInsert.pptx ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_SimpleJDBCInsert_data_specify_columns ├── Employee.sql ├── Output.txt ├── Specifying columns for a SimpleJdbcInsert.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_SimpleJDBCInsert_mapSqlParamsource ├── Employee.sql ├── Output.txt ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── core │ │ │ │ │ └── App.java │ │ │ │ │ └── employee │ │ │ │ │ ├── dao │ │ │ │ │ ├── EmployeeDAO.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── applicationContext.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── employee │ │ │ ├── dao │ │ │ ├── EmployeeDAO.class │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.class │ │ │ └── model │ │ │ └── Employee.class │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── test-classes │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.class └── Using SqlParameterSource_MapSqlParameterSource.pptx ├── SpringDemo_SimpleJDBCInsert_sqlParamsource ├── Employee.sql ├── Output.txt ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── core │ │ │ │ │ └── App.java │ │ │ │ │ └── employee │ │ │ │ │ ├── dao │ │ │ │ │ ├── EmployeeDAO.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── applicationContext.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── employee │ │ │ ├── dao │ │ │ ├── EmployeeDAO.class │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.class │ │ │ └── model │ │ │ └── Employee.class │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── test-classes │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.class └── Using SqlParameterSource to provide parameter values.pptx ├── SpringDemo_Spring_Jaxb_Integration ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── company.xml │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── core │ │ │ │ ├── App.java │ │ │ │ └── model │ │ │ │ └── Company.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ └── core │ │ ├── App.class │ │ └── model │ │ └── Company.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_Xtream_Integration ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── company.xml │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ └── core │ │ │ │ ├── App.java │ │ │ │ └── model │ │ │ │ └── Company.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ └── core │ │ ├── App.class │ │ └── model │ │ └── Company.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_batchUpdate ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_cache_ehcache ├── Output.txt ├── Spring Cache Tutorial with EhCache.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ └── AppConfig.java │ │ │ ├── model │ │ │ └── Product.java │ │ │ └── service │ │ │ ├── ProductService.java │ │ │ └── ProductServiceImpl.java │ │ └── resources │ │ └── ehcache.xml │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── com │ │ └── ram │ │ │ ├── App.class │ │ │ ├── configuration │ │ │ └── AppConfig.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ └── service │ │ │ ├── ProductService.class │ │ │ └── ProductServiceImpl.class │ └── ehcache.xml │ └── maven-status │ └── maven-compiler-plugin │ └── compile │ └── default-compile │ ├── createdFiles.lst │ └── inputFiles.lst ├── SpringDemo_cache_ehcache_update ├── Output.txt ├── Spring Caching Annotations Tutorial.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ └── AppConfig.java │ │ │ ├── model │ │ │ └── Product.java │ │ │ └── service │ │ │ ├── ProductService.java │ │ │ └── ProductServiceImpl.java │ │ └── resources │ │ └── ehcache.xml │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── com │ │ └── ram │ │ │ ├── App.class │ │ │ ├── configuration │ │ │ └── AppConfig.class │ │ │ ├── model │ │ │ └── Product.class │ │ │ └── service │ │ │ ├── ProductService.class │ │ │ └── ProductServiceImpl.class │ └── ehcache.xml │ └── maven-status │ └── maven-compiler-plugin │ └── compile │ └── default-compile │ ├── createdFiles.lst │ └── inputFiles.lst ├── SpringDemo_cacheconfig_Class_Level └── CacheConfig.pptx ├── SpringDemo_count ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_count_by_age ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_create_table ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_delete_multi_param_args ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_delete_multi_param_object_array ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_delete_one_param ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_isExist ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_mail_Inline_resource ├── Output.txt ├── Spring Email With Inline Resource using Annotations.pptx └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── bin │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── websystique │ │ │ └── spring │ │ │ ├── configuration │ │ │ ├── AppConfig.class │ │ │ └── SampleEmailApplication.class │ │ │ ├── model │ │ │ ├── CustomerInfo.class │ │ │ └── ProductOrder.class │ │ │ └── service │ │ │ ├── MailService.class │ │ │ ├── MailServiceImpl.class │ │ │ ├── OrderService.class │ │ │ └── OrderServiceImpl.class │ └── target │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ ├── pom.xml │ ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── ram │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ └── AppConfig.java │ │ │ └── service │ │ │ ├── MailService.java │ │ │ └── MailServiceImpl.java │ │ └── resources │ │ └── tree.jpg │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── com │ │ └── ram │ │ │ ├── App.class │ │ │ ├── configuration │ │ │ └── AppConfig.class │ │ │ └── service │ │ │ ├── MailService.class │ │ │ ├── MailServiceImpl$1.class │ │ │ └── MailServiceImpl.class │ └── tree.jpg │ └── maven-status │ └── maven-compiler-plugin │ └── compile │ └── default-compile │ ├── createdFiles.lst │ └── inputFiles.lst ├── SpringDemo_query_single_value_two_param_args ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_simplejdbccall_SP_AllRecords ├── Output.txt ├── Returning ResultSetREF Cursor from a SimpleJdbcCall.pptx ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── core │ │ │ │ │ └── App.java │ │ │ │ │ └── employee │ │ │ │ │ ├── dao │ │ │ │ │ ├── EmployeeDAO.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── applicationContext.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── employee │ │ │ ├── dao │ │ │ ├── EmployeeDAO.class │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.class │ │ │ └── model │ │ │ └── Employee.class │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── test-classes │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.class ├── employee.sql └── read_all_employee.sql ├── SpringDemo_simplejdbccall_Sp ├── Calling a stored procedure with SimpleJdbcCall.pptx ├── Employee.sql ├── Output.txt ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── core │ │ │ │ │ └── App.java │ │ │ │ │ └── employee │ │ │ │ │ ├── dao │ │ │ │ │ ├── EmployeeDAO.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── applicationContext.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── employee │ │ │ ├── dao │ │ │ ├── EmployeeDAO.class │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.class │ │ │ └── model │ │ │ └── Employee.class │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── test-classes │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.class └── readEmployee_stored_procedure.txt ├── SpringDemo_simplejdbccall_Sp_declare_param ├── Employee.sql ├── Explicitly declaring parameters to use for a SimpleJdbcCall.pptx ├── Output.txt ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── core │ │ │ │ │ └── App.java │ │ │ │ │ └── employee │ │ │ │ │ ├── dao │ │ │ │ │ ├── EmployeeDAO.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ │ └── model │ │ │ │ │ └── Employee.java │ │ │ └── resources │ │ │ │ └── applicationContext.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── employee │ │ │ ├── dao │ │ │ ├── EmployeeDAO.class │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.class │ │ │ └── model │ │ │ └── Employee.class │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── test-classes │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.class └── readEmployee_stored_procedure.txt ├── SpringDemo_simplejdbccall_function ├── Calling a stored function using SimpleJdbcCall.pptx ├── Output.txt ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ram │ │ │ │ │ ├── core │ │ │ │ │ └── App.java │ │ │ │ │ └── employee │ │ │ │ │ └── dao │ │ │ │ │ ├── EmployeeDAO.java │ │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ └── resources │ │ │ │ └── applicationContext.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ └── core │ │ │ └── AppTest.java │ └── target │ │ ├── classes │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.ram.core │ │ │ │ └── SpringDemo │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ ├── applicationContext.xml │ │ └── com │ │ │ └── ram │ │ │ ├── core │ │ │ └── App.class │ │ │ └── employee │ │ │ └── dao │ │ │ ├── EmployeeDAO.class │ │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ └── compile │ │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── test-classes │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.class ├── employee.sql └── read_employee_name_function.sql ├── SpringDemo_two_param_Query_single_value ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ ├── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ │ └── EmployeeDAOImpl.java │ │ │ │ └── model │ │ │ │ └── Employee.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ ├── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ │ └── EmployeeDAOImpl.class │ │ └── model │ │ └── Employee.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_update_args ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── SpringDemo_update_object_array ├── Employee.sql ├── Output.txt └── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── ram │ │ │ │ ├── core │ │ │ │ └── App.java │ │ │ │ └── employee │ │ │ │ └── dao │ │ │ │ ├── EmployeeDAO.java │ │ │ │ └── impl │ │ │ │ └── EmployeeDAOImpl.java │ │ └── resources │ │ │ └── applicationContext.xml │ └── test │ │ └── java │ │ └── com │ │ └── ram │ │ └── core │ │ └── AppTest.java │ └── target │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram.core │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── applicationContext.xml │ └── com │ │ └── ram │ │ ├── core │ │ └── App.class │ │ └── employee │ │ └── dao │ │ ├── EmployeeDAO.class │ │ └── impl │ │ └── EmployeeDAOImpl.class │ ├── maven-status │ └── maven-compiler-plugin │ │ └── compile │ │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── test-classes │ └── com │ └── ram │ └── core │ └── AppTest.class ├── Spring_JMS_ActiveMQ_ Example_with_Annotations_Product ├── MessageConsumerApp_Output.txt ├── MessageProducerApp_Output.txt ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageConsumerApp.java │ │ │ ├── MessageProducerApp.java │ │ │ ├── config │ │ │ ├── AppConfig.java │ │ │ └── MessagingConfiguration.java │ │ │ ├── model │ │ │ └── Product.java │ │ │ ├── producer │ │ │ └── MessageSender.java │ │ │ └── receiver │ │ │ └── MessageReceiver.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── ram │ │ ├── MessageConsumerApp.class │ │ ├── MessageProducerApp.class │ │ ├── config │ │ ├── AppConfig.class │ │ └── MessagingConfiguration.class │ │ ├── model │ │ └── Product.class │ │ ├── producer │ │ ├── MessageSender$1.class │ │ └── MessageSender.class │ │ └── receiver │ │ └── MessageReceiver.class └── Spring_JMS_ActiveMQ Example with Annotations_Product.pptx ├── Spring_JMS_ActiveMQ_Example_Annotations ├── MessageConsumerApp_Output.txt ├── MessageProducerApp_Output.txt ├── SpringDemo │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageConsumerApp.java │ │ │ ├── MessageProducerApp.java │ │ │ ├── config │ │ │ ├── AppConfig.java │ │ │ └── MessagingConfiguration.java │ │ │ ├── producer │ │ │ └── MessageSender.java │ │ │ └── receiver │ │ │ └── MessageReceiver.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringDemo │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── ram │ │ ├── MessageConsumerApp.class │ │ ├── MessageProducerApp.class │ │ ├── config │ │ ├── AppConfig.class │ │ └── MessagingConfiguration.class │ │ ├── producer │ │ ├── MessageSender$1.class │ │ └── MessageSender.class │ │ └── receiver │ │ └── MessageReceiver.class └── Spring_JMS_ActiveMQ Example with Annotations.pptx ├── Spring_JMS_ActiveMQ_Product_EnableJms ├── SpringJMSConsumer │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageConsumerApp.java │ │ │ ├── config │ │ │ ├── AppConfig.java │ │ │ ├── MessagingConfiguration.java │ │ │ └── MessagingListnerConfiguration.java │ │ │ ├── model │ │ │ └── Product.java │ │ │ └── receiver │ │ │ └── MessageReceiver.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringJMSConsumer │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── ram │ │ ├── MessageConsumerApp.class │ │ ├── config │ │ ├── AppConfig.class │ │ ├── MessagingConfiguration.class │ │ └── MessagingListnerConfiguration.class │ │ ├── model │ │ └── Product.class │ │ └── receiver │ │ └── MessageReceiver.class ├── SpringJMSConsumer_Output.txt ├── SpringJMSProducer │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageProducerApp.java │ │ │ ├── config │ │ │ ├── AppConfig.java │ │ │ └── MessagingConfiguration.java │ │ │ ├── model │ │ │ └── Product.java │ │ │ └── producer │ │ │ └── MessageSender.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringJMSProducer │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── ram │ │ ├── MessageProducerApp.class │ │ ├── config │ │ ├── AppConfig.class │ │ └── MessagingConfiguration.class │ │ ├── model │ │ └── Product.class │ │ └── producer │ │ ├── MessageSender$1.class │ │ └── MessageSender.class ├── SpringJMSProducer_Output.txt └── Spring_JMS_ActiveMQ Example with Annotations_Product_EnableJms.pptx ├── Spring_JMS_ActiveMQ_messageListener ├── SpringJMSConsumer │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageConsumerApp.java │ │ │ ├── config │ │ │ ├── AppConfig.java │ │ │ └── MessagingConfiguration.java │ │ │ ├── model │ │ │ └── Product.java │ │ │ └── receiver │ │ │ └── MessageReceiver.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringJMSConsumer │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── ram │ │ ├── MessageConsumerApp.class │ │ ├── config │ │ ├── AppConfig.class │ │ └── MessagingConfiguration.class │ │ ├── model │ │ └── Product.class │ │ └── receiver │ │ └── MessageReceiver.class ├── SpringJMSConsumer_Output.txt ├── SpringJMSProducer │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.m2e.core.prefs │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── ram │ │ │ ├── MessageProducerApp.java │ │ │ ├── config │ │ │ ├── AppConfig.java │ │ │ └── MessagingConfiguration.java │ │ │ ├── model │ │ │ └── Product.java │ │ │ └── producer │ │ │ └── MessageSender.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.ram │ │ │ └── SpringJMSProducer │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ └── com │ │ └── ram │ │ ├── MessageProducerApp.class │ │ ├── config │ │ ├── AppConfig.class │ │ └── MessagingConfiguration.class │ │ ├── model │ │ └── Product.class │ │ └── producer │ │ ├── MessageSender$1.class │ │ └── MessageSender.class ├── SpringJMSProducer_Output.txt └── Spring_JMS_ActiveMQ Example with Annotations_Product_messageListener.pptx ├── Spring_Java_Mail_API └── Spring Java Mail API.pptx └── What_is_RabbitMQ └── What_is_RabbitMQ.pptx /JavaEE_2019/AirtelHotSpot/AirtelHotSpot.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/AirtelHotSpot/AirtelHotSpot.pptx -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_ReverseComp/ArraysDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_ReverseComp/ArraysDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_ReverseComp/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_ReverseComp/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_asList/ArraysDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_asList/ArraysDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_asList/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_asList/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_deepToString/ArraysDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_deepToString/ArraysDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_deepToString/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_deepToString/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_fill_byteArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_fill_byteArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_fill_charArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_fill_charArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_fill_intArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_fill_intArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_fill_longArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_fill_longArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_sort_byteArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_sort_byteArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_sort_charArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_sort_charArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/ArraysDemo_sort_int_array/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/ArraysDemo_sort_int_array/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/Arrays_deepEquals_MDArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Arrays_deepEquals_MDArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/Arrays_hashcode/ArraysDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Arrays_hashcode/ArraysDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/Arrays_hashcode/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Arrays_hashcode/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/Arrays_hashcode/Arrays_hashcode.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Arrays_hashcode/Arrays_hashcode.pptx -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_Contains/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_Contains/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_Contains/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_Contains/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_Intro/EnumMap Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_Intro/EnumMap Intro.pptx -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_Intro/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_Intro/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_Intro/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_Intro/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_clear/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_clear/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_clear/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_clear/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_entrySet/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_entrySet/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_entrySet/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_entrySet/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_get/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_get/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_get/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_get/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_keySet/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_keySet/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_keySet/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_keySet/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_putAll/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_putAll/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_putAll/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_putAll/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_remove/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_remove/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_remove/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_remove/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_size/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_size/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_size/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_size/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_values/EnumMapDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_values/EnumMapDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumMapDemo_values/EnumMapDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumMapDemo_values/EnumMapDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_ComplementOf/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_ComplementOf/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_allOf/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_allOf/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_allOf/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_allOf/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_noneOf/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_noneOf/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_noneOf/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_noneOf/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_five/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_five/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_five/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_five/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_four/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_four/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_four/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_four/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_three/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_three/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_three/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_three/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_two/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_two/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_two/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_two/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_varargs/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_varargs/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_of_varargs/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_of_varargs/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_range/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_range/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSetDemo_range/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSetDemo_range/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/EnumSet_Intro/EnumSet Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSet_Intro/EnumSet Intro.pptx -------------------------------------------------------------------------------- /JavaEE_2019/EnumSet_Intro/EnumSetDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSet_Intro/EnumSetDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/EnumSet_Intro/EnumSetDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/EnumSet_Intro/EnumSetDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/Gradle_Install_Windows/Gradle_Install.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Gradle_Install_Windows/Gradle_Install.pptx -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_Intro/JAXB_Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_Intro/JAXB_Intro.pptx -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_Intro/JaxbDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_Intro/JaxbDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_Intro/JaxbDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_Intro/JaxbDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_Intro/JaxbDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_Intro/JaxbDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_bookstore/JAXB_BookStore.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_bookstore/JAXB_BookStore.pptx -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_bookstore/JaxbDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_bookstore/JaxbDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_bookstore/JaxbDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_bookstore/JaxbDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/JAXB_bookstore/JaxbDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JAXB_bookstore/JaxbDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/JSON_Data_Types/JSON Data Types.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_Data_Types/JSON Data Types.pptx -------------------------------------------------------------------------------- /JavaEE_2019/JSON_Intro/JSON_Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_Intro/JSON_Intro.pptx -------------------------------------------------------------------------------- /JavaEE_2019/JSON_Intro/Json_Receiving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_Intro/Json_Receiving.html -------------------------------------------------------------------------------- /JavaEE_2019/JSON_Intro/Json_Send.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_Intro/Json_Send.html -------------------------------------------------------------------------------- /JavaEE_2019/JSON_Storing Data/JSON_Storing Data.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_Storing Data/JSON_Storing Data.pptx -------------------------------------------------------------------------------- /JavaEE_2019/JSON_Storing Data/Json_Storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_Storing Data/Json_Storage.html -------------------------------------------------------------------------------- /JavaEE_2019/JSON_Syntax/JSON Syntax.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_Syntax/JSON Syntax.pptx -------------------------------------------------------------------------------- /JavaEE_2019/JSON_vs_XML/JSON vs XML.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/JSON_vs_XML/JSON vs XML.pptx -------------------------------------------------------------------------------- /JavaEE_2019/Java_util_Arrays_Intro/Java util Arrays.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Java_util_Arrays_Intro/Java util Arrays.pptx -------------------------------------------------------------------------------- /JavaEE_2019/Mavan_Basic_with_without/Mavan_Basic.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Mavan_Basic_with_without/Mavan_Basic.pptx -------------------------------------------------------------------------------- /JavaEE_2019/Mavan_How_works/Mavan_How it works.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Mavan_How_works/Mavan_How it works.pptx -------------------------------------------------------------------------------- /JavaEE_2019/Postman_install/Postman_install.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Postman_install/Postman_install.pptx -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_doubles/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_doubles/RandomDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_doubles/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_doubles/RandomDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_doubles/RandomDemo1_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_doubles/RandomDemo1_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_doubles/RandomDemo2_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_doubles/RandomDemo2_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_doubles/RandomDemo3_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_doubles/RandomDemo3_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_doubles_bound/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_doubles_bound/RandomDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints/RandomDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints/RandomDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints/RandomDemo1_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints/RandomDemo1_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints/RandomDemo2_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints/RandomDemo2_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints_bound/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints_bound/RandomDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints_bound/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints_bound/RandomDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints_bound/RandomDemo1_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints_bound/RandomDemo1_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_ints_bound/RandomDemo2_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_ints_bound/RandomDemo2_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs/RandomDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs/RandomDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs/RandomDemo1_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs/RandomDemo1_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs/RandomDemo2_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs/RandomDemo2_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs_bound/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs_bound/RandomDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs_bound/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs_bound/RandomDemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs_bound/RandomDemo1_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs_bound/RandomDemo1_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/RandomDemo_longs_bound/RandomDemo2_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/RandomDemo_longs_bound/RandomDemo2_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/Spring Boot_Why/Spring Boot_Why.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring Boot_Why/Spring Boot_Why.pptx -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_Filter/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBootDemo_Filter/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_Filter/SpringBootDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBootDemo_Filter/SpringBootDemo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_Filter/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBootDemo_Filter/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_ThemeLeaf_Internationalization/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 8080 -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_ThemeLeaf_Internationalization/SpringBootDemo/src/main/resources/messages_fr.properties: -------------------------------------------------------------------------------- 1 | welcome.text = Bienvenue Peter 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_ThemeLeaf_Webapp/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 8080 -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_ThemeLeaf_Webapp/SpringBootDemo/src/main/resources/static/css/styles.css: -------------------------------------------------------------------------------- 1 | h4 { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_banner_off_command/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_banner_off_program/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_banner_off_prop/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.main.banner-mode=off 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_custom_banner/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_file_download/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBootDemo_file_download/tree.jpg -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_file_upload/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBootDemo_file_upload/tree.jpg -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_jetty_option/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_jetty_option/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_jetty_option/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_jetty_option/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_standalone/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_standalone/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_standalone/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_standalone/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBootDemo_standalone/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | employeeName=Peter 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Active_Profile_application_property/HelloWorld/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | server.port = 9090 2 | employee.name = Peter 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Active_Profile_application_property/HelloWorld/src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- 1 | server.port = 8282 2 | employee.name = John -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Active_Profile_application_property/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 9292 2 | employee.name = Dave -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Advantages/Spring Boot Adv.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Advantages/Spring Boot Adv.pptx -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ApplicationRunner/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_ApplicationRunner/Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ApplicationRunner/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ApplicationRunner/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ApplicationRunner/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ApplicationRunner/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_BOM/HelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_BOM/HelloWorld/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_BOM/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_BOM/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_BOM/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_BOM/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_BOM/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_BOM/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_BOM/HelloWorld/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | server.port = 9090 2 | employee.name = Peter 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_BOM/HelloWorld/src/main/resources/application-prod.properties: -------------------------------------------------------------------------------- 1 | server.port = 8282 2 | employee.name = John -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_BOM/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 9292 2 | employee.name = Dave -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Bootstrapping_gradle/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Bootstrapping_maven/Helloworld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Bootstrapping_sts/demo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_CommandLineRunner/Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_Component/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_Component/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_Component/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_Component/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_order/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_order/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_order/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLineRunner_order/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLine_port/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_CommandLine_port/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_CommandLine_port/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Configure_Jetty_Program/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Configure_Jetty_Program/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Configure_Jetty_Program/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Configure_Jetty_Program/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Configure_Jetty_Program/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ExternalTomcat/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_ExternalTomcat/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ExternalTomcat/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_ExternalTomcat/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ExternalTomcat/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_ExternalTomcat/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_ExternalTomcat/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Get_loaded_beans/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Get_loaded_beans/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Get_loaded_beans/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Get_loaded_beans/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_JMS_ActiveMQ_Embedded/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Jetty_Gradle/HelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Jetty_Gradle/HelloWorld/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Jetty_Gradle/HelloWorld/bin/main/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Jetty_Gradle/HelloWorld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Jetty_Gradle/HelloWorld/gradlew -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Jetty_Gradle/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Random_Port/HelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Random_Port/HelloWorld/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Random_Port/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Random_Port/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Random_Port/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Random_Port/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Random_Port/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Random_Port/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Random_Port/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 0 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Spring_MVC_JSP/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Spring_MVC_JSP/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Spring_MVC_JSP/SpringBootDemo/src/main/webapp/WEB-INF/jsp/welcome.jsp: -------------------------------------------------------------------------------- 1 | ${message}! in Jsp -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Value_annotation/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_Value_annotation/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Value_annotation/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | employee.name = Peter 2 | 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_Value_annotation_default/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | employee.age = 38 -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_WebService_XML/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_WebService_XML/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_WebService_XML/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_changeport_yml/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_changeport_yml/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_changeport_yml/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_changeport_yml/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_changeport_yml/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_changeport_yml/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_changeport_yml/HelloWorld/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port : 9090 -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_display_beans/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_display_beans/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_display_beans/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_display_beans/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_display_beans/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_display_beans/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_display_beans/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_eclipse_Import_Helloworld/Helloworld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_eclipse_Import_Helloworld_gradle/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_eclipse_debug/Helloworld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_eclipse_debug/Helloworld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_eclipse_debug/Helloworld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_eclipse_debug/Helloworld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_eclipse_debug/Helloworld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_eclipse_debug/Helloworld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_eclipse_debug/Helloworld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback/HelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback/HelloWorld/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback/HelloWorld/log/spring.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback/HelloWorld/log/spring.log -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback_file/HelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback_file/HelloWorld/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback_file/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback_file/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback_file/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback_file/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback_file/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback_file/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback_file/HelloWorld/src/main/resources/logback.out.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_logback_yml_config/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_logback_yml_config/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_webapplication/SpringBootHelloWorldExample/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_webapplication/SpringBootHelloWorldExample/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_webapplication/SpringBootHelloWorldExample/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_webapplication/SpringBootHelloWorldExample/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/SpringBoot_what/SpringBoot_what.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/SpringBoot_what/SpringBoot_what.pptx -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Logging/HelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Logging/HelloWorld/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Logging/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Logging/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Logging/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Logging/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Logging/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Logging/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Logging/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | debug = true 2 | -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Logging/Spring_Boot_Logging.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Logging/Spring_Boot_Logging.pptx -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Logging_File_Path/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Logging_File_Path/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Multiple_DataSource/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Multiple_DataSource/employee.sql -------------------------------------------------------------------------------- /JavaEE_2019/Spring_Boot_Multiple_DataSource/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_Boot_Multiple_DataSource/user.sql -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_TomcatServletWebServerFactory/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_YML/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_boot_Context_path_YML/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_eclipse/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_os/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Spring_boot_Context_path_os/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_os/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_program/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_program_Container/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/Spring_boot_Context_path_system_prop/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_jetty_maven/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_jetty_maven/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_jetty_maven/SpringBootDemo/.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_jetty_maven/SpringBootDemo/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_jetty_maven/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_jetty_maven/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_log4j2/HelloWorld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_log4j2/HelloWorld/.gitignore -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_log4j2/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_log4j2/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_log4j2/HelloWorld/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_log4j2/HelloWorld/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_log4j2/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_log4j2/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_log4j2_propertity/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_log4j2_propertity/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_withour_restart/HelloWorld/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_withour_restart/HelloWorld/mvnw -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_withour_restart/HelloWorld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/Springboot_withour_restart/HelloWorld/pom.xml -------------------------------------------------------------------------------- /JavaEE_2019/Springboot_withour_restart/HelloWorld/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2019/jmsdemo_send_product/MessageSender_Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/jmsdemo_send_product/MessageSender_Output.txt -------------------------------------------------------------------------------- /JavaEE_2019/jmsdemo_send_product/jmsdemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/jmsdemo_send_product/jmsdemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2019/jmsdemo_send_product/jmsdemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/jmsdemo_send_product/jmsdemo/.project -------------------------------------------------------------------------------- /JavaEE_2019/jmsdemo_send_product/jmsdemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2019/jmsdemo_send_product/jmsdemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/Add_MongoDB_Array_Insert/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Add_MongoDB_Array_Insert/MongoDB Commands.txt -------------------------------------------------------------------------------- /JavaEE_2020/ArraysDemo_Stream_TArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/ArraysDemo_Stream_TArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/ArraysDemo_setAll_TArray/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/ArraysDemo_setAll_TArray/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/Arrays_parallelsort_user/ArraysDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Arrays_parallelsort_user/ArraysDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/CREATE_TABLE_SELECT/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/CREATE_TABLE_SELECT/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/CURL_install_windows/CURL install.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/CURL_install_windows/CURL install.pptx -------------------------------------------------------------------------------- /JavaEE_2020/Configuring_MongoDB_Config_file/mongo.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Configuring_MongoDB_Config_file/mongo.config -------------------------------------------------------------------------------- /JavaEE_2020/Cursor_in_MongoDb/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Cursor_in_MongoDb/MongoDB Commands.txt -------------------------------------------------------------------------------- /JavaEE_2020/Database_Tables/Database Tables.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Database_Tables/Database Tables.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays/JSON Arrays.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays/JSON Arrays.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays/JSON/bin/Json_Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays/JSON/bin/Json_Array.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays/JSON/src/Json_Array.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays/JSON/src/Json_Array.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_delete/JSON Arrays.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_delete/JSON Arrays.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_delete/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_delete/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_delete/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_delete/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_forin_loop/JSON Arrays.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_forin_loop/JSON Arrays.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_forin_loop/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_forin_loop/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_forin_loop/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_forin_loop/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_forloop/JSON Arrays.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_forloop/JSON Arrays.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_forloop/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_forloop/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_forloop/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_forloop/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_modify/JSON Arrays.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_modify/JSON Arrays.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_modify/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_modify/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_modify/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_modify/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_nested/JSON Arrays.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_nested/JSON Arrays.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_nested/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_nested/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Arrays_nested/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Arrays_nested/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Nested_object/JSON Nested.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Nested_object/JSON Nested.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Nested_object/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Nested_object/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Nested_object/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Nested_object/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects/JSON Objects.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects/JSON Objects.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects/JSON/bin/Json_object1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects/JSON/bin/Json_object1.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects/JSON/bin/Json_object2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects/JSON/bin/Json_object2.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects/JSON/src/Json_object1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects/JSON/src/Json_object1.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects/JSON/src/Json_object2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects/JSON/src/Json_object2.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects_Loop/JSON Objects Loop.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects_Loop/JSON Objects Loop.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects_Loop/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects_Loop/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects_Loop/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects_Loop/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects_Loop/JSON/bin/Json_loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects_Loop/JSON/bin/Json_loop.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Objects_Loop/JSON/src/Json_loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Objects_Loop/JSON/src/Json_loop.html -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parse/JSON.parse().pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parse/JSON.parse().pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parse/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parse/SpringBootDemo/.gitignore -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parse/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parse/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parse/SpringBootDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parse/SpringBootDemo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parse/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parse/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parse/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parsing_Dates/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parsing_Dates/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parsing_Dates/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parsing_Dates/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parsing_Dates/JSON_Parsing Dates.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parsing_Dates/JSON_Parsing Dates.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parsing_Functions/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parsing_Functions/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Parsing_Functions/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Parsing_Functions/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Stringify/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Stringify/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Stringify/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Stringify/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Stringify_array/JSON/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Stringify_array/JSON/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/JSON_Stringify_array/JSON/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_Stringify_array/JSON/.project -------------------------------------------------------------------------------- /JavaEE_2020/JSON_online_Parser/JSON Parser.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_online_Parser/JSON Parser.pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_online_Parser/Json_array.txt: -------------------------------------------------------------------------------- 1 | ["John","Peter","Dave"] -------------------------------------------------------------------------------- /JavaEE_2020/JSON_online_Parser/Json_nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_online_Parser/Json_nested.txt -------------------------------------------------------------------------------- /JavaEE_2020/JSON_online_Parser/employee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_online_Parser/employee.txt -------------------------------------------------------------------------------- /JavaEE_2020/JSON_parse_array/JSON.parse().pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_parse_array/JSON.parse().pptx -------------------------------------------------------------------------------- /JavaEE_2020/JSON_parse_array/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_parse_array/SpringBootDemo/.gitignore -------------------------------------------------------------------------------- /JavaEE_2020/JSON_parse_array/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_parse_array/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/JSON_parse_array/SpringBootDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_parse_array/SpringBootDemo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2020/JSON_parse_array/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/JSON_parse_array/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/JSON_parse_array/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/JSON_parse_array/SpringBootDemo/src/main/resources/static/json_demo.txt: -------------------------------------------------------------------------------- 1 | [ "Peter", "John", "Dave" ] -------------------------------------------------------------------------------- /JavaEE_2020/LocaleDemo_cons_lang/LocaleDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/LocaleDemo_cons_lang/LocaleDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/LocaleDemo_cons_lang/LocaleDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/LocaleDemo_cons_lang/LocaleDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/LocaleDemo_setDefault/LocaleDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/LocaleDemo_setDefault/LocaleDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/LocaleDemo_variant/LocaleDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/LocaleDemo_variant/LocaleDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/LocaleDemo_variant/LocaleDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/LocaleDemo_variant/LocaleDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/Locale_Intro/Locale.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Locale_Intro/Locale.pptx -------------------------------------------------------------------------------- /JavaEE_2020/Locale_Intro/LocaleDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Locale_Intro/LocaleDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/Locale_Intro/LocaleDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Locale_Intro/LocaleDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/Locale_fields/LocaleDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Locale_fields/LocaleDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/Locale_fields/LocaleDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Locale_fields/LocaleDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/Locale_fields/Locale_fields.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Locale_fields/Locale_fields.pptx -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_Fetch_last/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_Fetch_last/MongoDB Commands.txt -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_Indexing/MongoDB Indexing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_Indexing/MongoDB Indexing.pptx -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_Indexing_3/MongoDB - Indexing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_Indexing_3/MongoDB - Indexing.pptx -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_Indexing_3/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_Indexing_3/MongoDB Commands.txt -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_Intro/MongoDB_Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_Intro/MongoDB_Intro.pptx -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_Overview/MongoDB_Overview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_Overview/MongoDB_Overview.pptx -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_PK/MongoDB_id.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_PK/MongoDB_id.pptx -------------------------------------------------------------------------------- /JavaEE_2020/MongoDB_remove_method/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/MongoDB_remove_method/MongoDB Commands.txt -------------------------------------------------------------------------------- /JavaEE_2020/Mongo_compass/Mongo compass.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Mongo_compass/Mongo compass.pptx -------------------------------------------------------------------------------- /JavaEE_2020/Mongodb_Primary_Key_2/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Mongodb_Primary_Key_2/MongoDB Commands.txt -------------------------------------------------------------------------------- /JavaEE_2020/NULL_Functions/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/NULL_Functions/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/NULL_Functions/NULL Functions.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/NULL_Functions/NULL Functions.pptx -------------------------------------------------------------------------------- /JavaEE_2020/NoSQL_DB/NoSQL.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/NoSQL_DB/NoSQL.pptx -------------------------------------------------------------------------------- /JavaEE_2020/RDBMS/RDBMS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/RDBMS/RDBMS.pptx -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundleDemo_Read/ResourceBundleDemo/bin/MessageBundle_en_US.properties: -------------------------------------------------------------------------------- 1 | greeting=Hello, how are you? -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundleDemo_Read/ResourceBundleDemo/bin/MessageBundle_fr_FR.properties: -------------------------------------------------------------------------------- 1 | greeting=Salut comment allez-vous? -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundleDemo_Read/ResourceBundleDemo/src/MessageBundle_en_US.properties: -------------------------------------------------------------------------------- 1 | greeting=Hello, how are you? -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundleDemo_Read/ResourceBundleDemo/src/MessageBundle_fr_FR.properties: -------------------------------------------------------------------------------- 1 | greeting=Salut comment allez-vous? -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundle_Intro/ResourceBundle.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/ResourceBundle_Intro/ResourceBundle.pptx -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundle_Intro/ResourceBundleDemo/bin/MessageBundle_en_US.properties: -------------------------------------------------------------------------------- 1 | Greeting = Hi, how are you? -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundle_Intro/ResourceBundleDemo/bin/MessageBundle_fr_FR.properties: -------------------------------------------------------------------------------- 1 | Greeting = Salut comment ca va? -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundle_Intro/ResourceBundleDemo/src/MessageBundle_en_US.properties: -------------------------------------------------------------------------------- 1 | Greeting = Hi, how are you? -------------------------------------------------------------------------------- /JavaEE_2020/ResourceBundle_Intro/ResourceBundleDemo/src/MessageBundle_fr_FR.properties: -------------------------------------------------------------------------------- 1 | Greeting = Salut comment ca va? -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ALL/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ALL/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ALL/SQL ALL.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ALL/SQL ALL.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ALTER_TABLE/ALTER TABLE Statement.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ALTER_TABLE/ALTER TABLE Statement.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ALTER_TABLE/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ALTER_TABLE/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_AND/SQL AND Operator.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_AND/SQL AND Operator.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ANY/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ANY/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ANY/SQL ANY.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ANY/SQL ANY.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_AUTO_INCREMENT/SQL AUTO INCREMENT.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_AUTO_INCREMENT/SQL AUTO INCREMENT.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_AUTO_INCREMENT/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_AUTO_INCREMENT/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Aliases/SQL Aliases.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Aliases/SQL Aliases.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_BETWEEN/The SQL BETWEEN Operator.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_BETWEEN/The SQL BETWEEN Operator.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_BETWEEN/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_BETWEEN/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_CASE/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_CASE/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_CASE/SQL CASE.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_CASE/SQL CASE.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_CHECK_Constraint/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_CHECK_Constraint/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_CREATE_INDEX/SQL CREATE INDEX.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_CREATE_INDEX/SQL CREATE INDEX.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_CREATE_INDEX/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_CREATE_INDEX/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_CREATE_TABLE/SQL CREATE TABLE.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_CREATE_TABLE/SQL CREATE TABLE.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Comments/SQL Comments.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Comments/SQL Comments.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Constraints/SQL Constraints.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Constraints/SQL Constraints.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Constraints/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Constraints/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_DELETE/SQL DELETE Statement.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_DELETE/SQL DELETE Statement.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_DROP_DATABASE/DROP DATABASE.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_DROP_DATABASE/DROP DATABASE.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Dates/SQL Dates.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Dates/SQL Dates.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Dates/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Dates/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Drop_TABLE/SQL Drop TABLE.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Drop_TABLE/SQL Drop TABLE.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_EXISTS/SQL EXISTS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_EXISTS/SQL EXISTS.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_EXISTS/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_EXISTS/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_FOREIGN_KEY_Constraint/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_FOREIGN_KEY_Constraint/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_GROUP_BY/SQL GROUP BY Statement.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_GROUP_BY/SQL GROUP BY Statement.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_HAVING_Clause/SQL HAVING Clause.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_HAVING_Clause/SQL HAVING Clause.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Hosting/SQL Hosting.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Hosting/SQL Hosting.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_IN/The SQL IN Operator.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_IN/The SQL IN Operator.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_INNER_JOIN/SQL INNER JOIN.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_INNER_JOIN/SQL INNER JOIN.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_INNER_JOIN/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_INNER_JOIN/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_INSERT_INTO/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_INSERT_INTO/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_INSERT_INTO_SELECT/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_INSERT_INTO_SELECT/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Injection/SQL Injection.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Injection/SQL Injection.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Injection/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Injection/users.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Intro/SQL_Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Intro/SQL_Intro.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Intro/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Intro/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_JOIN/SQL JOIN.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_JOIN/SQL JOIN.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_JOIN/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_JOIN/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_LEFT_JOIN/SQL LEFT JOIN.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_LEFT_JOIN/SQL LEFT JOIN.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_LEFT_JOIN/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_LEFT_JOIN/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_LIKE/SQL LIKE Operator.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_LIKE/SQL LIKE Operator.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_LIKE/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_LIKE/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_NOT/SQL NOT Operator.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_NOT/SQL NOT Operator.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_NOTNULL/SQL NOT NULL.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_NOTNULL/SQL NOT NULL.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_NOTNULL/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_NOTNULL/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_NULL_Values/SQL NULL Values.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_NULL_Values/SQL NULL Values.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_OR/SQL OR Operator.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_OR/SQL OR Operator.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ORDER BY/Employee_DB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ORDER BY/Employee_DB.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_ORDER BY/SQL ORDER BY Keyword.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_ORDER BY/SQL ORDER BY Keyword.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_One_to_Many/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_One_to_Many/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_PRIMARY_KEY_Constraint/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_PRIMARY_KEY_Constraint/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_RIGHT_JOIN/SQL RIGHT JOIN.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_RIGHT_JOIN/SQL RIGHT JOIN.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_RIGHT_JOIN/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_RIGHT_JOIN/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_SELECT/SQL SELECT.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_SELECT/SQL SELECT.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_UNION/SQL UNION.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_UNION/SQL UNION.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_UNION/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_UNION/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_UNIQUE_Constraint/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_UNIQUE_Constraint/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_UPDATE/The SQL UPDATE Statement.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_UPDATE/The SQL UPDATE Statement.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_VS_NoSQL_DB/SQL vs NoSQL Database.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_VS_NoSQL_DB/SQL vs NoSQL Database.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Views/SQL Views.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Views/SQL Views.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_Views/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_Views/employee.sql -------------------------------------------------------------------------------- /JavaEE_2020/SQL_WHERE_Clause/SQL WHERE Clause.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_WHERE_Clause/SQL WHERE Clause.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SQL_WHERE_Clause/~$SQL WHERE Clause.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SQL_WHERE_Clause/~$SQL WHERE Clause.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SpringBootDemo_CRUD/Employee_DB_Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBootDemo_CRUD/Employee_DB_Script.sql -------------------------------------------------------------------------------- /JavaEE_2020/SpringBootDemo_CRUD/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBootDemo_CRUD/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/SpringBootDemo_CRUD/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBootDemo_CRUD/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/SpringBootDemo_custom_error_controller/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBootDemo_custom_error_page/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_CURL/Employee_DB_Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_CURL/Employee_DB_Script.sql -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_CURL/Spring Boot - CURL.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_CURL/Spring Boot - CURL.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_CURL/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_CURL/SpringBootDemo/.gitignore -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_CURL/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_CURL/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_CURL/SpringBootDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_CURL/SpringBootDemo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_CURL/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_CURL/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_CURL/curl_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_CURL/curl_commands.txt -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_Displaying_Custom_ErrorPages/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JMS_RabbitMQ_Example/SpringBootJMSReceiver/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port= 9090 2 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JMS_RabbitMQ_Product_Example/SpringBootJMSReceiver/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port= 9090 2 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JMS_RabbitMQ_Product_Manual_Ack/SpringBootJMSReceiver/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port= 9090 2 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JPA/Employee_DB_Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_JPA/Employee_DB_Script.sql -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JPA/Spring Boot - JPA.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_JPA/Spring Boot - JPA.pptx -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JPA/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_JPA/SpringBootDemo/.gitignore -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JPA/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_JPA/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JPA/SpringBootDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_JPA/SpringBootDemo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JPA/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_JPA/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_JPA/employee_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_JPA/employee_json.txt -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_RestTemplate/SpringBootRestTemplateDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 9090 -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_Security_JDBC/user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_Security_JDBC/user.sql -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_Security_basic_auth/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_ThemeLeaf_user/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_WebService_POST_Json/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_WebService_POST_XML/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_cache/Employee_DB_Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_cache/Employee_DB_Script.sql -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_cache/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_cache/SpringBootDemo/.gitignore -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_cache/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_cache/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_cache/SpringBootDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_cache/SpringBootDemo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_cache/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_cache/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/SpringBoot_cache/SpringBoot_cache.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/SpringBoot_cache/SpringBoot_cache.pptx -------------------------------------------------------------------------------- /JavaEE_2020/Spring_Boot_Enabling_HTTPS/Keytool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Spring_Boot_Enabling_HTTPS/Keytool.txt -------------------------------------------------------------------------------- /JavaEE_2020/Spring_Boot_JNDI_Tomcat_9/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.datasource.jndi-name=java:comp/env/jdbc/TestDB -------------------------------------------------------------------------------- /JavaEE_2020/Spring_Boot_JNDI_Tomcat_9/conf/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Spring_Boot_JNDI_Tomcat_9/conf/context.xml -------------------------------------------------------------------------------- /JavaEE_2020/Spring_Boot_JNDI_Tomcat_9/conf/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Spring_Boot_JNDI_Tomcat_9/conf/server.xml -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_Actuator/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_Actuator/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_Actuator/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_Actuator/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_Actuator/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port=8080 2 | management.endpoints.web.exposure.include=* -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_REST_Custom_Validation/book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_REST_Custom_Validation/book.sql -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_REST_Custom_Validation/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_REST_Custom_Validation/json.txt -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_REST_JPA_Book/book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_REST_JPA_Book/book.sql -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_REST_JPA_Book/book_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_REST_JPA_Book/book_json.txt -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_REST_Validation/book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_REST_Validation/book.sql -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_REST_Validation/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_REST_Validation/json.txt -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_email/SpringBootDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_email/SpringBootDemo/.gitignore -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_email/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_email/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_email/SpringBootDemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_email/SpringBootDemo/mvnw.cmd -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_email/SpringBootDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_email/SpringBootDemo/pom.xml -------------------------------------------------------------------------------- /JavaEE_2020/Springboot_email/SpringBootDemo/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Springboot_email/SpringBootDemo/tree.jpg -------------------------------------------------------------------------------- /JavaEE_2020/Studio3T/Studio 3T.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Studio3T/Studio 3T.pptx -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_Intro/UUID.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_Intro/UUID.pptx -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_Intro/UUIDDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_Intro/UUIDDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_Intro/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_Intro/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_Intro/UUIDDemo/bin/UUIDDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_Intro/UUIDDemo/bin/UUIDDemo.class -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_Intro/UUIDDemo/src/UUIDDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_Intro/UUIDDemo/src/UUIDDemo.java -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_clockSequence/UUIDDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_clockSequence/UUIDDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_clockSequence/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_clockSequence/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_different_ways/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_different_ways/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_getBits/UUIDDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_getBits/UUIDDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_getBits/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_getBits/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_node/UUIDDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_node/UUIDDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_node/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_node/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_node/UUIDDemo/bin/UUIDDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_node/UUIDDemo/bin/UUIDDemo.class -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_node/UUIDDemo/src/UUIDDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_node/UUIDDemo/src/UUIDDemo.java -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_timestamp/UUIDDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_timestamp/UUIDDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_timestamp/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_timestamp/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_variant/UUIDDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_variant/UUIDDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_variant/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_variant/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_version/UUIDDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_version/UUIDDemo/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/UUIDDemo_version/UUIDDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/UUIDDemo_version/UUIDDemo/.project -------------------------------------------------------------------------------- /JavaEE_2020/Uninstall_MongoDB/Uninstall_MongoDB.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/Uninstall_MongoDB/Uninstall_MongoDB.pptx -------------------------------------------------------------------------------- /JavaEE_2020/WSDL_UDDI/What is WSDL and UDDI.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/WSDL_UDDI/What is WSDL and UDDI.pptx -------------------------------------------------------------------------------- /JavaEE_2020/What_is_HATEOAS/What is HATEOAS.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/What_is_HATEOAS/What is HATEOAS.pptx -------------------------------------------------------------------------------- /JavaEE_2020/What_is_NoSQL/What is NoSQL.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/What_is_NoSQL/What is NoSQL.pptx -------------------------------------------------------------------------------- /JavaEE_2020/What_is_networking/What is networking.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/What_is_networking/What is networking.pptx -------------------------------------------------------------------------------- /JavaEE_2020/XML_Attributes/XML Attributes.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Attributes/XML Attributes.pptx -------------------------------------------------------------------------------- /JavaEE_2020/XML_Attributes/XML/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Attributes/XML/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/XML_Attributes/XML/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Attributes/XML/.project -------------------------------------------------------------------------------- /JavaEE_2020/XML_Attributes/XML/bin/employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Attributes/XML/bin/employee.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Attributes/XML/src/employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Attributes/XML/src/employee.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Elements/XML Elements.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Elements/XML Elements.pptx -------------------------------------------------------------------------------- /JavaEE_2020/XML_Elements/XML/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Elements/XML/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/XML_Elements/XML/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Elements/XML/.project -------------------------------------------------------------------------------- /JavaEE_2020/XML_Elements/XML/bin/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Elements/XML/bin/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Elements/XML/src/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Elements/XML/src/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Entity_References/XML/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Entity_References/XML/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/XML_Entity_References/XML/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Entity_References/XML/.project -------------------------------------------------------------------------------- /JavaEE_2020/XML_Entity_References/XML/bin/employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Entity_References/XML/bin/employee.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Entity_References/XML/src/employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Entity_References/XML/src/employee.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML Intro.pptx -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/.project -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/bin/employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/bin/employee.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/bin/employee_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/bin/employee_new.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/bin/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/bin/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/src/employee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/src/employee.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/src/employee_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/src/employee_new.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Intro/XML/src/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Intro/XML/src/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Namespaces/XML Namespaces.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Namespaces/XML Namespaces.pptx -------------------------------------------------------------------------------- /JavaEE_2020/XML_Syntax_Rules/XML Syntax Rules.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Syntax_Rules/XML Syntax Rules.pptx -------------------------------------------------------------------------------- /JavaEE_2020/XML_Syntax_Rules/XML/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Syntax_Rules/XML/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/XML_Syntax_Rules/XML/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Syntax_Rules/XML/.project -------------------------------------------------------------------------------- /JavaEE_2020/XML_Syntax_Rules/XML/bin/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Syntax_Rules/XML/bin/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Syntax_Rules/XML/src/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Syntax_Rules/XML/src/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Tree/XML Tree.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Tree/XML Tree.pptx -------------------------------------------------------------------------------- /JavaEE_2020/XML_Tree/XML/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Tree/XML/.classpath -------------------------------------------------------------------------------- /JavaEE_2020/XML_Tree/XML/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Tree/XML/.project -------------------------------------------------------------------------------- /JavaEE_2020/XML_Tree/XML/bin/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Tree/XML/bin/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/XML_Tree/XML/src/employees.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/XML_Tree/XML/src/employees.xml -------------------------------------------------------------------------------- /JavaEE_2020/keystore_explorer/keystore explorer.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/keystore_explorer/keystore explorer.pptx -------------------------------------------------------------------------------- /JavaEE_2020/robomongo/robomongo.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/JavaEE_2020/robomongo/robomongo.pptx -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_DateFormat_Class/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/DateFormatDemo_DateFormat_Class/Output.txt -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_Parse/DateFormatDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/DateFormatDemo_Parse/DateFormatDemo/.project -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_Parse/Output.txt: -------------------------------------------------------------------------------- 1 | Tue Jan 09 15:27:52 IST 2018 2 | -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_format/DateFormatDemo1_Output.txt: -------------------------------------------------------------------------------- 1 | en_US 2 | December 27, 2018 3 | -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_format/DateFormatDemo3_Output.txt: -------------------------------------------------------------------------------- 1 | en_US 2 | December 27, 2018 3 | -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_getCalendar/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/DateFormatDemo_getCalendar/Output.txt -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_getDateTimeInstance_date_locale-time_style/Output.txt: -------------------------------------------------------------------------------- 1 | en_US 2 | December 31, 2018 10:05:41 AM IST 3 | -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_getNumberFormat/Output.txt: -------------------------------------------------------------------------------- 1 | java.text.DecimalFormat@674dc 2 | -------------------------------------------------------------------------------- /Java_2019/DateFormatDemo_isLenient/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/DateFormatDemo_isLenient/Output.txt -------------------------------------------------------------------------------- /Java_2019/FormatterDemo_Intro/FormatterDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/FormatterDemo_Intro/FormatterDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/FormatterDemo_Intro/FormatterDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/FormatterDemo_Intro/FormatterDemo/.project -------------------------------------------------------------------------------- /Java_2019/FormatterDemo_Intro/Output.txt: -------------------------------------------------------------------------------- 1 | Peter age is 10 2 | -------------------------------------------------------------------------------- /Java_2019/FormatterDemo_format_locale/Output.txt: -------------------------------------------------------------------------------- 1 | Peter age is 10 2 | -------------------------------------------------------------------------------- /Java_2019/JMS_Intro/JMS_Intro.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/JMS_Intro/JMS_Intro.pptx -------------------------------------------------------------------------------- /Java_2019/ObservableDemo_deleteObservers/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/ObservableDemo_deleteObservers/Output.txt -------------------------------------------------------------------------------- /Java_2019/ObservableDemo_example/Observable.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/ObservableDemo_example/Observable.pptx -------------------------------------------------------------------------------- /Java_2019/ObservableDemo_example/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/ObservableDemo_example/Output.txt -------------------------------------------------------------------------------- /Java_2019/ObservableDemo_notify_observer/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/ObservableDemo_notify_observer/Output.txt -------------------------------------------------------------------------------- /Java_2019/RandomDemo_Intro/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_Intro/Output.txt -------------------------------------------------------------------------------- /Java_2019/RandomDemo_Intro/Random.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_Intro/Random.pptx -------------------------------------------------------------------------------- /Java_2019/RandomDemo_Intro/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_Intro/RandomDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/RandomDemo_Intro/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_Intro/RandomDemo/.project -------------------------------------------------------------------------------- /Java_2019/RandomDemo_Nextmethods/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_Nextmethods/Output.txt -------------------------------------------------------------------------------- /Java_2019/RandomDemo_Nextmethods/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_Nextmethods/RandomDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/RandomDemo_Nextmethods/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_Nextmethods/RandomDemo/.project -------------------------------------------------------------------------------- /Java_2019/RandomDemo_nextBytes/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_nextBytes/Output.txt -------------------------------------------------------------------------------- /Java_2019/RandomDemo_nextBytes/RandomDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_nextBytes/RandomDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/RandomDemo_nextBytes/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_nextBytes/RandomDemo/.project -------------------------------------------------------------------------------- /Java_2019/RandomDemo_nextGaussian/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_nextGaussian/Output.txt -------------------------------------------------------------------------------- /Java_2019/RandomDemo_nextGaussian/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_nextGaussian/RandomDemo/.project -------------------------------------------------------------------------------- /Java_2019/RandomDemo_nextInt_bound/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_nextInt_bound/Output.txt -------------------------------------------------------------------------------- /Java_2019/RandomDemo_nextInt_bound/RandomDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/RandomDemo_nextInt_bound/RandomDemo/.project -------------------------------------------------------------------------------- /Java_2019/SimpleDateFormatDemo_Intro/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/SimpleDateFormatDemo_Intro/Output.txt -------------------------------------------------------------------------------- /Java_2019/SimpleDateFormatDemo_Parse/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/SimpleDateFormatDemo_Parse/Output.txt -------------------------------------------------------------------------------- /Java_2019/SimpleDateFormatDemo_applyPattern/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/SimpleDateFormatDemo_applyPattern/Output.txt -------------------------------------------------------------------------------- /Java_2019/SimpleDateFormatDemo_toPattern/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/SimpleDateFormatDemo_toPattern/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_getDSTSavings/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_getDSTSavings/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_getOffset/TimeZoneDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_getOffset/TimeZoneDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_getRawOffset/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_getRawOffset/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_getTimeZone_id/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_getTimeZone_id/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_hasSameRules/Output.txt: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_inDaylightTime/Output.txt: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_observesDaylightTime/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_observesDaylightTime/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_setDefault/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_setDefault/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_setID/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_setID/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_setID/TimeZoneDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_setID/TimeZoneDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_setID/TimeZoneDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_setID/TimeZoneDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_setRawOffset/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_setRawOffset/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimeZoneDemo_useDaylightTime/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimeZoneDemo_useDaylightTime/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Intro/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Intro/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Intro/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Intro/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Intro/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Intro/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Intro/TimerDemo/src/TimerDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Intro/TimerDemo/src/TimerDemo.java -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Schedule_Once/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Schedule_Once/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Schedule_Once/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Schedule_Once/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Schedule_Once/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Schedule_Once/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Schedule_delay_repeat/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Schedule_delay_repeat/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Task_Intro_V1/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Task_Intro_V1/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Task_Intro_V1/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Task_Intro_V1/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_Task_Intro_V1/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_Task_Intro_V1/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_cancel/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_cancel/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_cancel/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_cancel/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_cancel/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_cancel/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_isDaemon/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_isDaemon/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_isDaemon/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_isDaemon/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_isDaemon/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_isDaemon/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_name_isDaemon/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_name_isDaemon/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_name_isDaemon/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_name_isDaemon/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_name_isDaemon/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_name_isDaemon/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_purge/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_purge/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_purge/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_purge/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_purge/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_purge/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_purge/TimerDemo/src/TimerDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_purge/TimerDemo/src/TimerDemo.java -------------------------------------------------------------------------------- /Java_2019/TimerDemo_scheduledExecutionTime/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_scheduledExecutionTime/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_thread_name/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_thread_name/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_thread_name/TimerDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_thread_name/TimerDemo/.classpath -------------------------------------------------------------------------------- /Java_2019/TimerDemo_thread_name/TimerDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_thread_name/TimerDemo/.project -------------------------------------------------------------------------------- /Java_2019/TimerDemo_timetask_cancel_V1/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_timetask_cancel_V1/Output.txt -------------------------------------------------------------------------------- /Java_2019/TimerDemo_timetask_cancel_V2/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/TimerDemo_timetask_cancel_V2/Output.txt -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send/JMS_Queue_ActiveMQ_Send.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send/JMS_Queue_ActiveMQ_Send.pptx -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send/Output.txt -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send/jmsdemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send/jmsdemo/.classpath -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send/jmsdemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send/jmsdemo/.project -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send/jmsdemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send/jmsdemo/pom.xml -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send_receive/jmsdemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send_receive/jmsdemo/.classpath -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send_receive/jmsdemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send_receive/jmsdemo/.project -------------------------------------------------------------------------------- /Java_2019/jmsdemo_send_receive/jmsdemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Java_2019/jmsdemo_send_receive/jmsdemo/pom.xml -------------------------------------------------------------------------------- /Later/Java_Later/API/1/What is an API.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/1/What is an API.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/10/HTTP Message Structure.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/10/HTTP Message Structure.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/11/HTTP Request methods.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/11/HTTP Request methods.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/12/Query Parameters.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/12/Query Parameters.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/13/Path Parameters.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/13/Path Parameters.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/14/HTTP Headers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/14/HTTP Headers.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/15/Content_Type_Headers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/15/Content_Type_Headers.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/16/Authorization_Header.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/16/Authorization_Header.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/17/Cookie_Header.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/17/Cookie_Header.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/18/HTTP Body.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/18/HTTP Body.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/19/HTTP Status Code.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/19/HTTP Status Code.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/2/How to use an API.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/2/How to use an API.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/3/Web vs API Server.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/3/Web vs API Server.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/4/History of API.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/4/History of API.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/5/What are Webservices.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/5/What are Webservices.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/6/Web Services Overview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/6/Web Services Overview.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/7/Why do we need HTTP.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/7/Why do we need HTTP.pptx -------------------------------------------------------------------------------- /Later/Java_Later/API/9/Web Service Interfaces.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/API/9/Web Service Interfaces.pptx -------------------------------------------------------------------------------- /Later/Java_Later/Apache/Apache Install Linux Make.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/Apache/Apache Install Linux Make.pptx -------------------------------------------------------------------------------- /Later/Java_Later/Apache/Apache Install Linux.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/Apache/Apache Install Linux.pptx -------------------------------------------------------------------------------- /Later/Java_Later/Apache/Apache Uninstall Linux.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/Apache/Apache Uninstall Linux.pptx -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/102/Replica Set Setpup.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/102/Replica Set Setpup.pptx -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/82/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/82/MongoDB Commands.txt -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/86/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/86/MongoDB Commands.txt -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/87/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/87/MongoDB Commands.txt -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/88/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/88/MongoDB Commands.txt -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/89/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/89/MongoDB Commands.txt -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/90/MongoDB Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/90/MongoDB Commands.txt -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/90/MongoDB Drop User.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/90/MongoDB Drop User.pptx -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/95/MongoDB Map-Reduce.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/95/MongoDB Map-Reduce.pptx -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/96/MongoDB Namespace.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/96/MongoDB Namespace.pptx -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/97/What is Replication.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/97/What is Replication.pptx -------------------------------------------------------------------------------- /Later/Java_Later/MongoDB_2/Pending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/MongoDB_2/Pending.txt -------------------------------------------------------------------------------- /Later/Java_Later/POC/gs-messaging-rabbitmq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/gs-messaging-rabbitmq/.gitignore -------------------------------------------------------------------------------- /Later/Java_Later/POC/gs-messaging-rabbitmq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/gs-messaging-rabbitmq/.travis.yml -------------------------------------------------------------------------------- /Later/Java_Later/POC/gs-messaging-rabbitmq/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/gs-messaging-rabbitmq/README.adoc -------------------------------------------------------------------------------- /Later/Java_Later/POC/gs-messaging-rabbitmq/complete/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | application.rabbitmq.host.name=192.168.142.83 2 | -------------------------------------------------------------------------------- /Later/Java_Later/POC/gs-messaging-rabbitmq/test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/gs-messaging-rabbitmq/test/run.sh -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium-example-master/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium-example-master/.project -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium-example-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium-example-master/LICENSE -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium-example-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium-example-master/README.md -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium-example-master/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium-example-master/pom.xml -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium/.classpath -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium/.project -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium/pom.xml -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/selenium_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium/selenium_command.txt -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | SeleniumStandaloneServerTest.class 2 | -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/webdriver/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium/webdriver/chromedriver -------------------------------------------------------------------------------- /Later/Java_Later/POC/selenium/webdriver/geckodriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/POC/selenium/webdriver/geckodriver -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/3/HTTP Methods.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/3/HTTP Methods.pptx -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/4.1/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/4.2/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/4.3/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/4.4/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/4.5/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/4/HTTP Headers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/4/HTTP Headers.pptx -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/5/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/5/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/5/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/6/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/6/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/6/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/7/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/7/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/7/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/7/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/7/json.txt -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/8/SpringBootDemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/8/SpringBootDemo/mvnw -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/8/SpringBootDemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Later/Java_Later/RESTFul_Spring/8/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/RESTFul_Spring/8/json.txt -------------------------------------------------------------------------------- /Later/Java_Later/maven/1/Maven Example.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/maven/1/Maven Example.pptx -------------------------------------------------------------------------------- /Later/Java_Later/maven/New Text Document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Java_Later/maven/New Text Document.txt -------------------------------------------------------------------------------- /Later/Java_Later/pending.txt: -------------------------------------------------------------------------------- 1 | https://www.appsdeveloperblog.com/tag/rest-assured/ -------------------------------------------------------------------------------- /Later/Pending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Pending.txt -------------------------------------------------------------------------------- /Later/Spring_Later/pending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Later/Spring_Later/pending.txt -------------------------------------------------------------------------------- /Spring_2019/Spring4_hibernate4_XML_Config/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/Spring4_hibernate4_XML_Config/Output.txt -------------------------------------------------------------------------------- /Spring_2019/Spring4_hibernate4_XML_Config/employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/Spring4_hibernate4_XML_Config/employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Email_Annotation/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Email_Annotation/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Email_Freemarker/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Email_Freemarker/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Email_attachment/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Email_attachment/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Email_attachment/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Email_attachment/tree.jpg -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Gmail_MailSender/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Gmail_MailSender/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_JAXB_XML_Config/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_JAXB_XML_Config/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_JDBCTemplate_Insert/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_JDBCTemplate_Insert/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_JDBC_Insert_find/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_JDBC_Insert_find/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_JDBC_Insert_find/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_JDBC_Insert_find/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Object_XML_mapping_castor_Annotation_config/SpringDemo/bin/src/main/resources/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent = true -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Object_XML_mapping_castor_Annotation_config/SpringDemo/bin/target/classes/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent = true -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Object_XML_mapping_castor_Annotation_config/SpringDemo/src/main/resources/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent = true -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Object_XML_mapping_castor_Annotation_config/SpringDemo/target/classes/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent = true -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Object_XML_mapping_castor_XML_config/SpringDemo/src/main/resources/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent = true -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Object_XML_mapping_castor_XML_config/SpringDemo/target/classes/castor.properties: -------------------------------------------------------------------------------- 1 | org.exolab.castor.indent = true -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Query_multi_rows/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Query_multi_rows/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Query_multi_rows/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Query_multi_rows/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Query_single_value/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Query_single_value/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Query_single_value/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Query_single_value/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Retrive_auto_key/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Retrive_auto_key/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Retrive_auto_key/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Retrive_auto_key/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_RowMapper/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_RowMapper/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_RowMapper/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_RowMapper/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_RowMapper/SpringDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_RowMapper/SpringDemo/.classpath -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_RowMapper/SpringDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_RowMapper/SpringDemo/.project -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_RowMapper/SpringDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_RowMapper/SpringDemo/pom.xml -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_Xtream_Integration/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_Xtream_Integration/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_batchUpdate/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_batchUpdate/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_batchUpdate/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_batchUpdate/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_batchUpdate/SpringDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_batchUpdate/SpringDemo/.project -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_batchUpdate/SpringDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_batchUpdate/SpringDemo/pom.xml -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_cache_ehcache/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_cache_ehcache/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_cache_ehcache_update/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_cache_ehcache_update/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count/SpringDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count/SpringDemo/.classpath -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count/SpringDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count/SpringDemo/.project -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count/SpringDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count/SpringDemo/pom.xml -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count_by_age/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count_by_age/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count_by_age/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count_by_age/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_count_by_age/SpringDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_count_by_age/SpringDemo/pom.xml -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_create_table/Employee.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE org_db; 2 | 3 | -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_create_table/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_create_table/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_create_table/SpringDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_create_table/SpringDemo/pom.xml -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_delete_one_param/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_delete_one_param/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_delete_one_param/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_delete_one_param/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_isExist/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_isExist/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_isExist/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_isExist/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_isExist/SpringDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_isExist/SpringDemo/.classpath -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_isExist/SpringDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_isExist/SpringDemo/.project -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_isExist/SpringDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_isExist/SpringDemo/pom.xml -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_mail_Inline_resource/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_mail_Inline_resource/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_simplejdbccall_Sp/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_simplejdbccall_Sp/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_simplejdbccall_Sp/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_simplejdbccall_Sp/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_update_args/Employee.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_update_args/Employee.sql -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_update_args/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_update_args/Output.txt -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_update_args/SpringDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_update_args/SpringDemo/.project -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_update_args/SpringDemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_update_args/SpringDemo/pom.xml -------------------------------------------------------------------------------- /Spring_2019/SpringDemo_update_object_array/Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/SpringDemo_update_object_array/Output.txt -------------------------------------------------------------------------------- /Spring_2019/What_is_RabbitMQ/What_is_RabbitMQ.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramram43210/Java_Spring_2019/HEAD/Spring_2019/What_is_RabbitMQ/What_is_RabbitMQ.pptx --------------------------------------------------------------------------------