Giter Site home page Giter Site logo

addresslist's Introduction

addresslist

educational project for teaching Spring MVC and JPA

Project Setup

The Basics:

import Project via shell

  • git clone https://github.com/phasenraum2010/addresslist.git
  • this creates a directory addresslist
  • open STS
  • import -> Git -> Projects from Git -> next
  • existing local repository -> next
  • add the addresslist directory to the list of local repositories
  • choose the addresslist directory
  • check: import as general project
  • next -> finish
  • wait a minute
  • right click on the Project in STS Package Explorer:
  • configure -> convert to maven project

or import Project via STS only

  • File -> import -> Git -> Projects from Git -> next
  • enter: "addresslist" and search
  • choose "phasenraum2010/addresslist" (or your fork with your username instead of mine)
  • next -> next -> choose Directory for downloading the project
  • check: import as general project
  • next -> finish
  • wait a minute
  • right click on the Project in STS Package Explorer:
  • configure -> convert to maven project

Setup MySQL Database

open MySQL-Client and enter:

CREATE USER 'addresslist'@'localhost' IDENTIFIED BY 'addresslistpwd';

GRANT SELECT, INSERT, UPDATE, DELETE,CREATE, DROP,FILE,INDEX,ALTER, CREATE TEMPORARY TABLES, CREATE VIEW, EVENT, TRIGGER, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EXECUTE ON * . * TO 'addresslist'@'localhost' IDENTIFIED BY 'addresslistpwd' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;

CREATE DATABASE IF NOT EXISTS addresslist;

GRANT ALL PRIVILEGES ON addresslist.* TO 'addresslist'@'localhost';

GRANT ALL PRIVILEGES ON addresslist_%.* TO 'addresslist'@'localhost';

Startup

addresslist's People

Contributors

phasenraum2010 avatar

Stargazers

 avatar

Watchers

 avatar  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.