Devlog
article thumbnail
[SpringBoot] 간단한 ToDo List 만들기
스터디/프로젝트 2022. 6. 19. 12:38

Spring 구조랑 흐름 파악을 하기 위해 간단한 프로젝트를 진행했다. (정말 작고... 소중해...) 개발 환경: IntelliJ IDEA 개발 언어: Java 데이터베이스: Oracle 빌드 도구: Gradle 개발 기간: 2022.06.10 ~ 2022.06.12 1) 사용할 투두 리스트 부트스트랩 찾기 프론트에 큰 시간을 두고 싶지 않아서 부트스트랩을 사용했다 사용한 투두 리스트 부트스트랩은 아래와 같다 https://codepen.io/jagathgj/pen/ZEGXqgd Angularjs + bootstrap = todo ... codepen.io 2) 프로젝트 생성하기 Spring Starter Project을 이용하여 프로젝트를 생성하였다 3) 데이터베이스 생성하기 진짜 간단한 CRUD를 ..

article thumbnail
[백준 4375] 1
스터디/알고리즘 2022. 5. 15. 01:47

#include using namespace std; int main(){ int n; while(cin >> n){ int temp=0; for(int i=1; i

[백준 1159] 농구 경기
스터디/알고리즘 2022. 5. 15. 00:24

#include using namespace std; int main(){ int n, count[26]={0}; string name, result; cin >> n; for(int i=0; i> name; count[name[0]-'a']++; } for(int i=0; i=5) result+= i+'a'; if(result.size()) cout

article thumbnail
[백준 1629] 곱셈
스터디/알고리즘 2022. 5. 14. 21:48

#include using namespace std; typedef long long ll; ll a, b, c; ll go(ll a, ll b){ if(b==1) return a % c; ll _c = go(a, b/2); _c = (_c * _c) % c; if(b % 2) _c=(_c * a) % c; return _c; } int main(){ cin >> a >> b >> c; cout

[백준 10988] 팰린드롬인지 확인하기
스터디/알고리즘 2022. 5. 11. 13:05

#include using namespace std; int main(){ string str, temp; cin >> str; temp = str; reverse(str.begin(), str.end()); if(str==temp) cout

[백준 10808] 알파벳 개수
스터디/알고리즘 2022. 5. 11. 00:38

#include using namespace std; int main(){ string str; int alpa[26]={0}; cin >> str; for(int i=0; i

[백준 2979] 트럭 주차
스터디/알고리즘 2022. 5. 10. 23:34

#include using namespace std; int main(){ int A, B, C, a, b, count[101]={0}, result=0; cin >> A>> B >> C; for(int i=0; i> a >> b; for(int j=a; j

article thumbnail
[Spring] Spring MVC Structure
강의/KOSTA 2022. 5. 3. 17:35

위 글은 해당 카테고리의 수업 강의 자료를 정리한 것입니다. MVC 구조의 이해 MVC(Model-View-Controller) 대부분의 서블릿 기반 프레임워크들이 사용하는 방식 데이터와 처리, 화면을 분리하는 방식 웹에서는 Model2 방식으로 표현 스프링과 스프링 MVC 스프링 프레임워크 Core + 여러 Sub 프로젝트들 https://spring.io/projects 별도로 결합해서 사용하기 때문에 설정 역시 별도로 처리 가능 Spring | Projects Spring Framework Provides core support for dependency injection, transaction management, web apps, data access, messaging, and more. sp..

검색 태그