Coder Social home page Coder Social logo

anabada's Introduction

Anabada

front-end :Android , backend:Spring

아껴쓰고 나눠쓰고 바꿔쓰고 다시쓰자


해당프로젝트의의 개발진행과정은 블로그에서 볼 수 있으며 매일 개발 기록을 볼수있습니다.

물건을 사거나 팔거나 바꿀수있는 프로젝트입니다.

(프로젝트의 설명에 사용된 예시는 주제와 달리 연예인의 사진을 사용하였습니다)

How the frontend and backend exchange information

image

Technology used

back-end
front-end

Running Anabada locally

Anabada is a Spring Boot application built using Gradle.

The h2 database must be executed before performing the following command.

(JDBC URL: jdbc:h2:tcp://localhost/~/anabada , username : sa)

git clone https://github.com/saechimdaeki/Anabada.git
cd backend
./gradle build
cd build\libs
java -jar target/*.jar
ex)java -jar Anabada-0.0.1-SNAPSHOT.jar

Once the above process is finished, you can launch the Android app in the frontend folder.:bee:

backend directory structure

---src
    +---main
    |   +---generated
    |   +---java
    |   |   \---Anabada
    |   |       \---Anabada
    |   |           |   AnabadaApplication.java
    |   |           |
    |   |           +---controller
    |   |           |       CommentController.java
    |   |           |       FileController.java
    |   |           |       PostController.java
    |   |           |       RegistController.java
    |   |           |       TestController.java
    |   |           |
    |   |           +---domain
    |   |           |       Account.java
    |   |           |       AttachmentFile.java
    |   |           |       Comment.java
    |   |           |       FileUrl.java
    |   |           |       Member.java
    |   |           |       Post.java
    |   |           |
    |   |           +---dto
    |   |           |       AccountDto.java
    |   |           |       UploadFileResponse.java
    |   |           |
    |   |           +---exception
    |   |           |       FileStorageException.java
    |   |           |       MyFileNotFoundException.java
    |   |           |       PostNotFoundException.java
    |   |           |
    |   |           +---repository
    |   |           |       AccountRepository.java
    |   |           |       AttachmentFileRepository.java
    |   |           |       CommentRepository.java
    |   |           |       FileUriRepository.java
    |   |           |       PostRepository.java
    |   |           |
    |   |           +---secret
    |   |           |       Hashing.java
    |   |           |
    |   |           \---service
    |   |                   AccountService.java
    |   |                   AttachmentFileService.java
    |   |                   CommentService.java
    |   |                   FileUriService.java
    |   |                   PostService.java
    |   |                   PostServiceImpl.java
    |   |
    |   \---resources
    |       |   application.yml
    |       |
    |       +---static
    |       \---templates

frontend directory structure

-main
|       |   |   AndroidManifest.xml
|       |   |
|       |   +---java
|       |   |   \---springboot
|       |   |       \---juseong
|       |   |           \---anabada
|       |   |               |   MainActivity.java
|       |   |               |   Secret.java
|       |   |               |
|       |   |               +---Adapter
|       |   |               |       commentAdpater.java
|       |   |               |       FileAdapter.java
|       |   |               |       getFileAdpater.java
|       |   |               |       PostAdapter.java
|       |   |               |
|       |   |               +---DataModel
|       |   |               |       CommentModel.java
|       |   |               |       FileModel.java
|       |   |               |       getFileModel.java
|       |   |               |       PostModel.java
|       |   |               |
|       |   |               +---retrofit2
|       |   |               |       RetrofitFactory.java
|       |   |               |       RetrofitService.java
|       |   |               |
|       |   |               +---retrofitModel
|       |   |               |       Account.java
|       |   |               |       Comment.java
|       |   |               |       FileUrl.java
|       |   |               |       Post.java
|       |   |               |
|       |   |               \---screen
|       |   |                   |   frag1.java
|       |   |                   |   frag2.java
|       |   |                   |   frag3.java
|       |   |                   |   getPostAcitivty.java
|       |   |                   |   Loading.java
|       |   |                   |   ZoomPicActivity.java
|       |   |                   |
|       |   |                   \---regist
|       |   |                           loginActivity.java

Requirements

For building and running the application you need:



Let's look at some simple functions. (addpost, deletepost ,real-time comments , imageZoom )

( ※ The image used is a project to buy and sell products, although it used pictures of celebrities. ※ )

post

글삭제

댓글달기

댓글삭제

루다이미지

Detailed functions can be viewed here or directly through the program.


📝 License

This project is released under the MIT license. See LICENSE for details.

MIT License

Copyright (c) 2020 김준성

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

anabada's People

Contributors

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