Skip to content

Instantly share code, notes, and snippets.

@tonussi
Created March 1, 2014 22:15
Show Gist options
  • Save tonussi/9298308 to your computer and use it in GitHub Desktop.
Save tonussi/9298308 to your computer and use it in GitHub Desktop.
ccv_app_tree
.
├── bin
│   ├── pom.xml
│   ├── Procfile
│   ├── README.md
│   ├── src
│   │   └── main
│   │   ├── java
│   │   │   └── com
│   │   │   └── example
│   │   │   ├── controller
│   │   │   │   ├── SecurityConfig.class
│   │   │   │   ├── SecurityWebApplicationInitializer.class
│   │   │   │   └── VehicleController.class
│   │   │   ├── model
│   │   │   │   ├── Admin.class
│   │   │   │   ├── Components.class
│   │   │   │   └── Vehicle.class
│   │   │   ├── service
│   │   │   │   ├── VehicleService.class
│   │   │   │   └── VehicleServiceImpl.class
│   │   │   └── utils
│   │   │   └── InputValidator.class
│   │   ├── resources
│   │   │   ├── applicationContext.xml
│   │   │   └── META-INF
│   │   │   └── persistence.xml
│   │   └── webapp
│   │   ├── index.jsp
│   │   ├── META-INF
│   │   │   └── MANIFEST.MF
│   │   └── WEB-INF
│   │   ├── jsp
│   │   │   ├── edit.jsp
│   │   │   └── vehicle.jsp
│   │   └── web.xml
│   ├── system.properties
│   └── target
│   └── classes
├── pom.xml
├── Procfile
├── README.md
├── src
│   └── main
│   ├── java
│   │   └── com
│   │   └── example
│   │   ├── controller
│   │   │   ├── LoginController.java
│   │   │   ├── SecurityConfig.java
│   │   │   ├── SecurityWebApplicationInitializer.java
│   │   │   └── VehicleController.java
│   │   ├── dao
│   │   │   ├── VehicleDaoImpl.java
│   │   │   └── VehicleDao.java
│   │   ├── mask
│   │   │   ├── FormCheckboxComponentsMask.java
│   │   │   └── FormInputVehicleFieldMask.java
│   │   ├── model
│   │   │   ├── Components.java
│   │   │   └── Vehicle.java
│   │   ├── service
│   │   │   ├── VehicleServiceImpl.java
│   │   │   └── VehicleService.java
│   │   └── utils
│   │   └── InputValidator.java
│   ├── resources
│   │   ├── applicationContext.xml
│   │   └── META-INF
│   │   └── persistence.xml
│   └── webapp
│   ├── css
│   │   └── screen.css
│   ├── index.jsp
│   ├── META-INF
│   │   ├── log4j.propertiers
│   │   ├── MANIFEST.MF
│   │   └── spring
│   │   └── database.propertiers
│   └── WEB-INF
│   ├── dispatcher-servlet.xml
│   ├── jsp
│   │   ├── 404.jsp
│   │   └── vehicle.jsp
│   ├── security-config.xml
│   └── web.xml
├── system.properties
└── target
├── classes
│   ├── applicationContext.xml
│   ├── com
│   │   └── example
│   │   ├── controller
│   │   │   ├── LoginController.class
│   │   │   ├── SecurityConfig.class
│   │   │   ├── SecurityWebApplicationInitializer.class
│   │   │   └── VehicleController.class
│   │   ├── dao
│   │   │   ├── VehicleDao.class
│   │   │   └── VehicleDaoImpl.class
│   │   ├── mask
│   │   │   ├── FormCheckboxComponentsMask.class
│   │   │   └── FormInputVehicleFieldMask.class
│   │   ├── model
│   │   │   ├── Components.class
│   │   │   └── Vehicle.class
│   │   ├── service
│   │   │   ├── VehicleService.class
│   │   │   └── VehicleServiceImpl.class
│   │   └── utils
│   │   └── InputValidator.class
│   └── META-INF
│   └── persistence.xml
└── m2e-wtp
└── web-resources
└── META-INF
├── MANIFEST.MF
└── maven
└── com.example
└── spring-hibernate-template
├── pom.properties
└── pom.xml
54 directories, 67 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment