Git Product home page Git Product logo

slipp's Introduction

설치 및 빌드

  • MAVEN을 설치하고 경로를 설정한다.
  • OS가 윈도우즈인 경우 src/main/lib 디렉토리의 deploy-lib.bat(리눅스 또는 맥인 경우 deploy-lib.sh) 파일을 실행해 로컬 저장소에 라이브러리를 배포한다.
  • MySQL 데이터베이스를 설치하고 slipp 프로젝트에서 사용할 데이터베이스를 생성한다.(인코딩 utf-8)
  • USER_HOME/.m2 디렉토리에 settings.xml 파일을 생성한 후 다음 설정을 추가한다. 데이터베이스명, 사용자 아이디, 비밀번호를 자신의 환경에 맞도록 수정한다.
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <profiles>
    <profile>
      <id>development</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <environment>development</environment>
        <database.url>jdbc:mysql://127.0.0.1/slipp?uniCode=true&amp;characterEncoding=utf8</database.url>
        <database.username>userid</database.username>
        <database.password>password</database.password>
      </properties>
    </profile>
  </profiles>
</settings>
  • 이클립스를 사용하는 경우 명령 창에서 "mvn eclipse:clean eclipse:eclipse"를 실행해 이클립스 프로젝트로 변환한 후 가져오기 한다.
  • src/main/resources 디렉토리의 temp-application-properties.xml 파일을 application-properties.xml으로 이름을 바꾼다. 인증을 하려면 페이스북, 트위트, 구글에 앱을 등록한 후 application-properties.xml 설정 파일에 관련 내용을 변경해야 한다.

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.