본문 바로가기

분류 전체보기155

17일차 | 스프링부트 JWT 블로그 가상 서버 셋팅하기1 init / User GET : http://lalacoding.site/init/user init / post POST: http://lalacoding.site/init/user 로그인 처리 POST: http://lalacoding.site/login { "username":"user0002", "password":"1234" } 회원가입 처리 POST: http://lalacoding.site/join { "username":"user0002", "password":"1234", "email":"user0002@gmail.com" } 회원정보 수정 PUT: http://lalacoding.site/user/45 Authorization : Bearer eyJ0eXAiOiJKV1QiLCJhbGciO.. 2022. 3. 9.
15,16,17일차 | 영화 평점 소개 사이트 <- 녹화본으로 흐름 파악할 것 //todo info bottom 안되는 것 해결하기 코드 추가 AndroidManifest.xml build.gradle buildTypes { ... buildFeatures{ // dataBinding true viewBinding { enabled true } } } def retrofit_version ="2.9.0" dependencies { ... implementation "com.squareup.retrofit2:retrofit:$retrofit_version" implementation "com.squareup.retrofit2:converter-gson:$retrofit_version" implementation 'com.github.bumptech.glide:glide:4.12.0'.. 2022. 3. 8.
2일차 | react2 yarn 설치 $npm i yarn --global 프로젝트 생성 $yarn create react-app begin $yarn create react-app 폴더명 $npm install -g create-react-app cd 프로젝트 폴더로 이동 $yarn start 실행 React 란? 리액트는 페이스북사에서 만든 자바스크립트 라이브러리입니다. 페이스북에서 자체적으로 이용되고 있을 뿐 아니라 많은 웹 어플리케이션이 리액트로 만들어졌습니다. "리액트는 유저 인터페이스를 만들 수 있는 라이브러리입니다." -> 사용자에게 보여지는 UI 만들고 사용자가 클릭을 하거나 이벤트가 발생하게 되면 그 이벤트에 맞게 반응하도록 만들어진 라이브러리입니다. 복잡한 웹 어플리케이션을 만들 때 MVC 패턴을 사용합니다... 2022. 3. 7.
15일차 | 지금까지 한 것 다 합한 예제 //https://eva.design/ https://yts.lt/api/v2/list_movies.json?limit=20&page=1&sort_by=rating https://www.jsonschema2pojo.org/ Eva Design System Open Source Code Libraries No need to spend thousands of hours for implementation, testing and maintenance. Eva is supported by well known Angular and React Native UI component libraries. More to come. eva.design jsonschema2pojo Reference properties For e.. 2022. 3. 7.