The error message "No online devices found" indicates that the Android Debug Bridge (ADB) is unable to detect any connected or running devices or emulators. Here are some steps you can take to resolve this issue: Verify USB Connection: If you are using a physical Android device, ensure that it is properly connected to your computer via a USB cable. Check if the device is recognized by your opera..
로그인 화면의 로그인박스를 화면 중앙에 배치하고 싶은데, flex와 gird를 이용하면 쉽게 해결할 수 있다. 부모엘리먼트를 flex나 gird로 설정하면 되고, min-height를 100vh를 하면 된다. min-height를 넣지 않을 경우 컨텐츠 높이만큼 되기 때문에 수평 가운데 정렬처럼 느낄 수 있다. flex .wrapper { display: flex; justify-content: center; align-items: center; min-height: 100vh; } grid .wrapper { display: grid; place-items: center; min-height: 100vh; }

웹개발을 하다보면 이미지, 아이콘들이 많이 필요한데 유용한 사이트이다. https://www.flaticon.com/ Free Icons and Stickers - Millions of images to download Download Free Icons and Stickers for your projects. Images made by and for designers in PNG, SVG, EPS, PSD and CSS formats www.flaticon.com

영어의 경우 단어단위로 줄바꿈이 되는 것을 알 수가 있는데, 한글의 경우는 단어단위가 아닌 글자단위로 줄바꿈이 되고 있다. 이때 word-break를 keep-all로 넣어주면 한글도 영어처럼 단어단위로 줄바꿈 되는것을 확인할 수가 있다. 더 자세한 사항은 아래를 참조하면 좋다. https://developer.mozilla.org/ko/docs/Web/CSS/word-break word-break - CSS: Cascading Style Sheets | MDN CSS word-break 속성은 텍스트가 자신의 콘텐츠 박스 밖으로 오버플로 할 때 줄을 바꿀 지 지정합니다. developer.mozilla.org

개발을 하게 되면 로컬pc, 개발서버, 운영서버 별로 환경변수(설정파일)을 다르게 해야 한다. 다를 수 밖에 없다. 로컬개발을 할 때는 로컬에 맞는 설정을 해야하고, 운영서버에 배포할 때는 운영서버에 맞는 환경 설정을 해야 하는데, 개발하면서 매번 수정하면서 진행 할 수 가 없다. #VM arg = -Dspring.profiles.active=dev #개발환경별로 나누기 spring: config: activate: on-profile: dev --- #Datasource Configuration spring: datasource: driver-class-name: org.postgresql.Driver hikari: maximum-pool-size: 4 url: jdbc:postgresql://loca..