본문 바로가기

업무_메모

(15)
유니티와 비주얼 스튜디오 연결 ** Edit > Preferences... > External Tools > External Script Editor > 비주얼스튜디오 선택
유니티 옛날 버전, 유니티 허브로 다운로드 받기 1. 아래의 문의글에서 Guys로 시작하는 글 참고하기 https://forum.unity.com/threads/add-modules-missing-for-2018-4-2f1-install.701825/ "Add Modules" missing for 2018.4.2f1 install I need to add the UWP modules to my 2018.4.2f1 install but the "Add Modules" button is missing. My 2017.1.5f1 and 2019.3.0a7 installs both have the... forum.unity.com ** 참고한 문의글 이미지 ** And go to the unity3d.com/get-unity/download/archive 바..
비주얼 스튜디오 자동저장(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 설치 많이 사용되는 ..
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