├── gerenciador ├── .gitignore ├── src │ └── main │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── bienvenido.html │ │ └── WEB-INF │ │ └── web.xml ├── .classpath └── .project └── .gitignore /gerenciador/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /gerenciador/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /gerenciador/src/main/webapp/bienvenido.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Bienvenido al curso de Servlets de Alura! 4 | 5 | -------------------------------------------------------------------------------- /gerenciador/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | gerenciador 4 | 5 | index.html 6 | index.jsp 7 | index.htm 8 | default.html 9 | default.jsp 10 | default.htm 11 | 12 | -------------------------------------------------------------------------------- /gerenciador/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /gerenciador/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | gerenciador 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.wst.common.project.facet.core.builder 15 | 16 | 17 | 18 | 19 | org.eclipse.wst.validation.validationbuilder 20 | 21 | 22 | 23 | 24 | 25 | org.eclipse.jem.workbench.JavaEMFNature 26 | org.eclipse.wst.common.modulecore.ModuleCoreNature 27 | org.eclipse.wst.common.project.facet.core.nature 28 | org.eclipse.jdt.core.javanature 29 | org.eclipse.wst.jsdt.core.jsNature 30 | 31 | 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .metadata 2 | bin/ 3 | tmp/ 4 | *.tmp 5 | *.bak 6 | *.swp 7 | *~.nib 8 | local.properties 9 | .settings/ 10 | .loadpath 11 | .recommenders 12 | 13 | # External tool builders 14 | .externalToolBuilders/ 15 | 16 | # Locally stored "Eclipse launch configurations" 17 | *.launch 18 | 19 | # PyDev specific (Python IDE for Eclipse) 20 | *.pydevproject 21 | 22 | # CDT-specific (C/C++ Development Tooling) 23 | .cproject 24 | 25 | # CDT- autotools 26 | .autotools 27 | 28 | # Java annotation processor (APT) 29 | .factorypath 30 | 31 | # PDT-specific (PHP Development Tools) 32 | .buildpath 33 | 34 | # sbteclipse plugin 35 | .target 36 | 37 | # Tern plugin 38 | .tern-project 39 | 40 | # TeXlipse plugin 41 | .texlipse 42 | 43 | # STS (Spring Tool Suite) 44 | .springBeans 45 | 46 | # Code Recommenders 47 | .recommenders/ 48 | 49 | # Annotation Processing 50 | .apt_generated/ 51 | .apt_generated_test/ 52 | 53 | # Scala IDE specific (Scala & Java development for Eclipse) 54 | .cache-main 55 | .scala_dependencies 56 | .worksheet 57 | 58 | #Personalized 59 | Servers/ 60 | 61 | # Uncomment this line if you wish to ignore the project description file. 62 | # Typically, this file would be tracked if it contains build/dependency configurations: 63 | #.project --------------------------------------------------------------------------------