본문 바로가기

분류 전체보기

(299)
비주얼 스튜디오 자동저장(Auto Save 설정)
윈도우 시작시 도커 자동 실행 1. 재부팅시 docker 컨테이너를 자동으로 시작되도록 설정 : docker update --restart=always 도커이름 2. 윈도우 시작시 자동실행 : 윈도우 + R + shell:startup -> C:\Users\binna\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 이동 자동 실행할 프로그램 드래그 앤 드롭 ** 작업시 참고한 블로그 https://freesunny.tistory.com/24 재부팅시 docker 컨테이너를 자동으로 시작되도록 설정하는 방법 만들때 --restart-always 옵션을 넣어주면 되는데, 빼고 컨테이너를 실행했을 때에는 아래의 명령으로 변경할 수 있다. # docker update --rest..
[MySQL] 백업 -> 복구, 도커에 설치 1. 도커 설치 : https://www.docker.com Docker: Accelerated Container Application Development Docker is a platform designed to help developers build, share, and run container applications. We handle the tedious setup, so you can focus on the code. www.docker.com 2. HeidiSQL 이용하여 백업하기 : 우클릭 > 데이터베이스를 SQL로 내보내기 선택 > 데이터 선택, 파일명을 통해 위치와 이름 설정 > 내보내기 클릭 3. 도커 버전 확인 docker -v + 윈도우에서 도커(Docker)를 사용할 때 'Doc..
C# SuperSoket 소켓 애플리케이션 프레임워크 https://docs.supersocket.net/v2-0 SuperSocket 2.0 Documentation en (US) Toggle Dropdown v2.0 Toggle Dropdown docs.supersocket.net https://discoverdot.net/projects/supersocket Discover .NET - SuperSocket SuperSocket is a light weight, cross platform and extensible socket server application framework. discoverdot.net https://github.com/kerryjiang/SuperSocket GitHub - kerryjiang/SuperSocket: SuperS..
비주얼 스튜디오(Visual Studio) SVN 설치 Extensions > Manage Extensions > Visual Studio Marketplace > svn 검색 > VisualSVN for Visual Studio 2022 다운로드 후 Close 클릭 비주얼 스튜디오 종료 후 아래와 같이 진행 비주얼 스튜디오를 실행하면 아래와 같이 설치됨 Tools > Options... > Source Control > Plug-in Selection에서 VisualSVN 설정하기 ** 설치시 도움 받은 블로그 https://brian3632.tistory.com/entry/Visual-Studio-SVN-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0-1 Visual Studio SVN 설치하기 1 VisualSVN 설치 많이 사용되는 ..
앱 런칭 후기 인터뷰 영상 https://www.youtube.com/watch?v=kBN_NR2YSwY
기술면접 부트캠프 후기 https://witty-toad-850.notion.site/795e341eeec84d678549278f14353102 기술면접 부트캠프 모집 문의 : https://open.kakao.com/o/g7Nc6rPe witty-toad-850.notion.site https://school.programmers.co.kr/learn/courses/16713/16713-%EB%9D%BC%EC%9D%B4%EB%B8%8C2%EA%B8%B0-%EC%83%81%EC%9C%84-%EC%84%9C%EB%B9%84%EC%8A%A4-back-end-%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%93%A4%EA%B3%BC-%EC%A7%84%ED%96%89%ED%95%98%EB%8A%94-%EB%AA%A8%EC%9D..
TestUser 생성.java public class AdminUserTest extends ApplicationTests { private AdminUserRepository adminUserRepository; @Autowired public AdminUserTest(AdminUserRepository adminUserRepository) { this.adminUserRepository = adminUserRepository; } @Test public void createAminUser() { AdminUser user = AdminUser.builder() .username("아이디") .password(new BCryptPasswordEncoder().encode("비밀번호")) .name("이름") .role(AdminRo..
gitignore 설정 HELP.md .gradle build/ !gradle/wrapper/gradle-wrapper.jar !**/src/main/**/build/ !**/src/test/**/build/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache bin/ !**/src/main/**/bin/ !**/src/test/**/bin/ ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr out/ !**/src/main/**/out/ !**/src/test/**/out/ ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdi..
오류: 기본 클래스 org.gradle.wrapper.GradleWrapperMain을(를) 찾거나 로드할 수 없습니다. 원인: java.lang.ClassNotFoundException: org.gradle.wrapper.GradleWrapperMain ./gradlew bootJar