Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="
  6. http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. http://www.springframework.org/schema/context/spring-context.xsd">
  10.  
  11. <context:component-scan base-package="testing" />
  12.  
  13.  
  14. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  15. <property name="prefix" value="/WEB-INF/Jsp/" />
  16. <property name="suffix" value=".jsp" />
  17. </bean>
  18.  
  19. <mvc:annotation-driven />
  20.  
  21. </beans>
  22.  
  23. The module has not been deployed.
  24. See the server log for details.
  25. at org.netbeans.modules.j2ee.deployment.devmodules.api.Deployment.deploy(Deployment.java:238)
  26. at org.netbeans.modules.maven.j2ee.ExecutionChecker.performDeploy(ExecutionChecker.java:205)
  27. at org.netbeans.modules.maven.j2ee.ExecutionChecker.executionResult(ExecutionChecker.java:123)
  28. at org.netbeans.modules.maven.execute.MavenCommandLineExecutor.run(MavenCommandLineExecutor.
  29. java:235)
  30. at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:153)
  31.  
  32. Failed to execute goal org.apache.maven.plugins:maven-clean-plugin:2.4.1:clean (default-
  33. clean) on project ProjectDB: Failed to clean project: Failed to delete C:Users
  34. USERDocumentsNetBeansProjectsProjectDBtargetProjectDB-1.0-SNAPSHOTWEB-INF
  35. libspring-web-3.2.4.RELEASE.jar -> [Help 1]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement