Giter VIP home page Giter VIP logo

babdev-spring's Introduction

examples of spring-framework from http://babdev.blogspot.co.at

To Build :
  
    Change to the sub project root directory, and issue the mvn package command.
  
    >cd <sub-project-root>
    >mvn package 
    

TroubleShooting :

  Problem : 
      STS gives an error, "Dynamic Web Module 3.0 requires Java 1.6 or newer”

  Solution : 
      http://qussay.com/2013/09/13/solving-dynamic-web-module-3-0-requires-java-1-6-or-newer-in-maven-projects/
      
      1) Check that your project is configured to use Java 1.7.
      
          Right click your project > Properties > Java Compiler and set “Compiler compliance level” to 1.7.
        
      2) Next select Project Facets > Java and set its version to 1.7
      
          If you didn’t find 1.7, add it to eclipse :
          Navigate to eclipse Preferences > Java > Installed JREs, click Add, and locate your installed Java path.
        
      3) Open your project’s pom.xml and add this plugin tag

          <build>
              <plugins>
                  <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-compiler-plugin</artifactId>
                  <version>3.1</version>
                  <configuration>
                      <source>1.7</source>
                      <target>1.7</target>
                  </configuration>
              </plugin>
              </plugins>
          </build>
      
      4) Finally, right click on your project > Maven > Update Project…

babdev-spring's People

Contributors

gregorriegler avatar jsissom avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.