Download presentation
Presentation is loading. Please wait.
1
Práctica 1
3
Aplicación creada con arquetipo
4
Configuración: The m2eclipse plugin doesn't use Eclipse defaults, the m2eclipse plugin derives the settings from the POM. So if you want a Maven project to be configured to use Java 1.6 settings when imported under Eclipse, configure the maven-compiler-plugin appropriately, as I already suggested: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin>
6
Alt+F5
7
Index.jsp
8
web.xml
9
Ejecutar aplicación en el servidor
Alt+Shift+X,R
10
Agregar Spring
11
Group Id Artifact Id Version Scope junit 4.12 test org.springframework spring-core ${org.springframework.version} compile spring- webmvc javax.servlet servlet-api 2.5 provided
16
Tests
17
Crear la vista
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.