순수한 공상과학연구소

Development (92)

  1. 2021.07.28 [IntelliJ] Override a method of a superclass

    Override methods of a superclass Last modified: 08 March 2021 You can override any method of a parent class by generating necessary code from a predefined template. IntelliJ IDEA creates a stub that contains a call to the method of the superclass, leaving the developer with the task of providing some meaningful source code in the method's body. Override a method of a superclass On the Code menu,..

  2. 2021.07.21 [JavaScript] npm 소개와 설치

    출처: https://web-front-end.tistory.com/3 npm 소개와 설치 (About Node Package Manager) npm(Node Package Manager) ? node.js에서 빠질 수 없는게 npm인데 사실 저 같은경우는 bower 및 grunt를 사용하기 위해 npm을 그러면서 자연스럽게 node.js를 접하게 되었다. node.js가 빠른 발전을 할 수 있었.. web-front-end.tistory.com [Node.js] npm 이란? 출처: https://ooeunz.tistory.com/19?category=813312 [Node.js] npm이란? Node Pacackage Manager. 이하 npm은 이름 그대로 노드 패키지 매니저이다. 세상에는 많은 ..

  3. 2021.07.13 [Java Spring Boot] SpringBoot 세션타임 관리하는 방법

    출처: https://sdragoon.tistory.com/entry/SpringBoot-%EC%84%B8%EC%85%98%ED%83%80%EC%9E%84-%EA%B4%80%EB%A6%AC%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95 SpringBoot 세션타임 관리하는 방법 SpringBoot + JPA 방식으로 개발을 하고 있는 중인데 로그인 세션 시간을 늘려달라는 주문이 들어왔다. 구글링을 하던중에 application.properties 파일에 server.session.timeout=(설정시간) 이렇게 설정하면 된.. sdragoon.tistory.com 내용: SpringBoot + JPA 방식으로 개발을 하고 있는 중인데 로그인 세션 시간을 늘려달라는 주문이 들어왔다. ..

  4. 2021.07.12 [IntelliJ] IntelliJ 메모리 설정(IntelliJ 메모리 늘리기)

    출처: https://goddaehee.tistory.com/246 [IntelliJ] IntelliJ 메모리 설정(IntelliJ 메모리 늘리기) [IntelliJ] IntelliJ 메모리 설정(IntelliJ 메모리 늘리기) 안녕하세요. 갓대희 입니다. 이번 포스팅은 [ [IntelliJ] Intellij memory 늘리기 ] 입니다. : ) 인텔리제이 메모리 늘리기 인텔리 제이를 계속 사.. goddaehee.tistory.com

  5. 2021.06.28 [Java] ArrayList 사용법

    출처: https://coding-factory.tistory.com/551 [Java] 자바 ArrayList 사용법 & 예제 총정리 ArrayList란? ArrayList는 List 인터페이스를 상속받은 클래스로 크기가 가변적으로 변하는 선형리스트입니다. 일반적인 배열과 같은 순차리스트이며 인덱스로 내부의 객체를 관리한다는점등이 유 coding-factory.tistory.com

  6. 2021.06.28 [Java Spring Boot] Spring Security의 계정 클래스와 권한 클래스 설계

    출처: https://zgundam.tistory.com/49 Spring Security의 계정 클래스와 권한 클래스 설계 저번 글에서는 Spring Security를 커스터마이징 하는데 있어 필요한 Database 스키마 설명을 했다. 이번에는 Spring Security에서 다루어지는 사용자(앞으로는 설명의 편의를 위해 계정이라고 하겠다)와 권 zgundam.tistory.com

  7. 2021.06.28 [Markdown] Markdown 마크다운 사용법, 문법

    출처: https://m.blog.naver.com/jooeun0502/221956294941 [Git, 깃] README.md 작성하는 방법, 예시 | markdown (마크다운) 사용법, 문법 안녕하세요 쥰입니다! 오늘은 Git 에서 README.md 파일을 작성할 때 사용하는 Mark Down 문법에 ... blog.naver.com

  8. 2021.06.22 [Java Spring Boot] intelliJ의 spring boot 에서 profile 사용한 application.properties 로딩 (gradle build)

    출처: https://lejewk.github.io/springboot-gradle-spring-profiles-active/ spring boot 에서 profile 사용한 application.properties 로딩 (gradle build) 환경(dev, qa, stage, prod) 에 따른 설정 로딩 요구개발환경에 따라 설정값을 달리 로딩해야할 필요가 있습니다. Eg) dev, qa, stage, prod spring boot 에서는 이들을 profile 로 취급하며,application-.propertie lejewk.github.io

  9. 2021.06.11 [IntelliJ] IntelliJ 단축키(Shortcut Key) 설정법

    출처: https://dongdongfather.tistory.com/104 inteliJ 단축키 설정(feat. 전체 탭 닫기) 요약 1. File > Settings > Keymap 이동 2. 단축키 등록할 기능 검색 3. 단축키 등록할 기능을 커서로 선택 후 4. 마우스 오른쪽버튼 클릭한 후 'Add Keyboard Shortcut' 클릭 5. 사용 할 단축키 클릭 후 OK 버튼.. dongdongfather.tistory.com