본문 바로가기

분류 전체보기

(147)
개발 .. Description: Parameter 1 of constructor in shop.heartmuscle.heartmuscle.controller.QnaController required a bean of type 'shop.heartmuscle.heartmuscle.controller.modelassembler.QnaModelAssembler' that could not be found. Action: Consider defining a bean of type 'shop.heartmuscle.heartmuscle.controller.modelassembler.QnaModelAssembler' in your configuration. Process finished with exit code 0
개발 시작 157일차 오늘 한 일 - 김영한님 강의 - Do it 자료구조 재귀법 - 백준 17829 - Leetcode https://leetcode.com/problems/reshape-the-matrix/ Reshape the Matrix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com https://leetcode.com/problems/first-unique-character-in-a-string/ First Unique Character in a String - Leet..
개발 시작 156일차 오늘 한 일 - 스프링 스터디, 자료 취합 - 김영한님 강의 - 백준 스터디 문제 1992 - leetcode 566. Reshape the Matrix Reshape the Matrix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com
개발 시작 155일차 오늘 한 일 - NetworkChuck 영상 시청. https://www.youtube.com/watch?v=CRdL1PcherM&list=PLIhvC56v63IJVXv0GJcl9vO5Z6znCVb1P&index=4 - 김영님 강의 스프링 기본 핵심 원리 시작 - 백준 2630 - Leetcode 88, 350, 121
개발 시작 154일차 오늘 한 일 https://learning.oreilly.com/library/view/spring-start-here/9781617298691/ Spring Start Here Spring Start Here teaches Java developers how to build applications using Spring framework. Informative graphics, relevant examples, and author Laurenţiu Spilcă's clear and lively writing make it easy to pick … - Selection from Spring Start Here [Book] www.oreilly.com 오라일리에서 Spring Start Here 읽기 시..
개발 시작 153일차 스파르타코딩클럽 내일배움캠프가 끝난지 한달하고도 5일이 지났다. 남에게 보여주기식 기록을 남기기보다는 내 학습에 집중하자는 생각으로 중요한 내용이 아니면 블로그를 쓰지 않았는데, 학습이 늘어지는 것 같아서 개발 일지를 쉬는 하루 빼고는 매일 쓰기로 했다. 오늘 한 일 자바 완전 정복 챕터 7 클래스 메서드, 생성자, this 키워드와 this() 메서드 챕터 18 람다식
SW사관학교 면접 후기 https://rumbling-bear-8d2.notion.site/SW-b95fa353af294d16ba3891f299531943
1월 결산 Keep 코테 문제 풀이가 실력이 향상 되는 것을 느꼈다. Do it 자바로 컴퓨팅 사고력이 어느정도 향상 된 것 같다. Leetcode 문제도 이제 어느정도 감이 잡힌다. 책을 적극적으로 빌리고, 자료 조사도 하고, Oreilly도 시도한 것. 아침 산책 및 운동 Problem 1월에 공부를 너무 안 했다. 마음 가짐이 문제인 것 같다. 취업에 대해서 조금 더 엄격하게 했어야 했는데 안이하게 생각했다. 이렇게 하면 원하는 곳에 취업 못 한다. 시간을 조금 더 엄격하게 써야 하며, 게더 들어가는 시간도 정해야겠다. 내 시간에 대해서 관대 했던 것 자료 조사에 시간을 너무 많이 쓴 것 이 자료 / 저 자료 기웃 거린 것 공부 기록 및 정리를 안 한 것 일간, 주간 결산을 하지 않은 것 Try 생활 오전 2..
Udemy 웨비나 및 변 튜터님 QnA Udemy - 요즘 신입 프로젝트 수준이 높다. - 오픈 소스 프로젝트를 참고하라. - 스터디를 하라. 우물안의 개구리가 되지 마라. - 언어 꾸준하게 공부하기. - 영문 자료가 먼저 나오고, 한글 자료가 나오기 때문에, 한글 자료가 나오는데 시간이 걸림. (이게 내 강점임). 변 튜터님 QnA - 스프링의 구조 알아야 함. Dispatcher Servlet 등. - 규모가 큰 회사일수록 기초/이론을 더 중시함. 운영체제 / 네트워크 / 자료구조 및 알고리즘 / 데이터베이스 - 자료구조/알고리즘 공부 방법. 튜터님은 문제 풀면서 필요한 개념 찾음. 개념부터 면저 숙지하고 문제 푸는 사람들도 있었음. 문제 많이 풀어보기. - 코딩테스트 통과해도 면접 때 자료구조 및 알고리즘 질문 한다고 함. - 이력서에 ..
application-local/dev/prod.properties 개발을 할 때 환경에 따라 application.properties를 수정해줘야 할 때가 있다. 배포는 배포에 맞게, 로컬은 로컬에 맞게. 이렇게 설정하면 된다. application-.properties 원래 있던 application.properties 파일은 놔두고 하나 더 생성한 한다. 파일명은 에 dev, local, prod, test 등 맞게 설정하면 된다. dev - 개발 local - 로컬 prod - 배포 test - 테스트. 아무렇게나 지어도 되지만, 보통 저 컨벤션을 따른다. 예시 application-prod.properties 그리고 나서 원래 application.properties 파일로 간다. 그리고 안에 내용을 다 지운다. spring.profiles.active= 혹은 ..