모나드

고정 헤더 영역

글 제목

메뉴 레이어

모나드

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (62)
    • 개발 (19)
    • JAVA (13)
    • Windows (3)
    • OpenCv (1)
    • Money (7)
    • Ubuntu (7)
    • 개발일반 (5)
    • Excel (1)
    • 일상 (3)

검색 레이어

모나드

검색 영역

컨텐츠 검색

JAVA

  • [Thymeleaf] template might not exist or might not be accessible by any of the configured Template Resolvers

    2021.11.19 by monad

  • [Intellij]LiveReload at Community Edition 2021.2.2

    2021.11.11 by monad

  • [intellij] compiler.automake.allow.when.app.running (liveReload 설정 시)

    2021.10.08 by monad

  • [intellij] springboot bootrun 정지 시키기

    2021.10.08 by monad

  • [intellij] @SpringBootTest 인식 불가 문제

    2021.10.08 by monad

  • [intellij] 선택 영역에서 치환 Ctrl + Shift + R

    2021.10.06 by monad

  • [JAR] 기본 Manifest 속성이 없습니다.

    2021.09.02 by monad

  • [intellij] 폴더 또는 파일을 .gitignore에 추가하기

    2021.08.30 by monad

[Thymeleaf] template might not exist or might not be accessible by any of the configured Template Resolvers

로컬에서 아무런 문제 없는 데 서버에서 이런 문제가 발생한다면, 서버가 리눅스 계열인지 확인합니다. 컨트롤러에서 폴더와 파일명의 대/소문자를 확인하면 됩니다.

JAVA 2021. 11. 19. 16:19

[Intellij]LiveReload at Community Edition 2021.2.2

HTML, CSS, JS, JAVA 파일 등이 수정되면 자동으로 웹페이지에서 변경내용을 표시하기 Intellij 환경: Community Editon 2021.2.2 1. DevTools 의존성 주입 2. IntelliJ Registry 활성화 3. Compiler Build 자동화 활성화 4. Chrome에서 LiveReload 설치 5. application.properties 설정 6. 컴파일 시 Live Reload Server 정보 확인 7. 웹페이지 확인 1. DevTools 의존성 주입 설정 File: {프로젝트 루트}/build.gradle 이하와 같이 org.springframework.boot:spring-boot-devtools의 의존성을 추가합니다. dependencies { imp..

JAVA 2021. 11. 11. 09:25

[intellij] compiler.automake.allow.when.app.running (liveReload 설정 시)

intellij 2021.2에서 File > Settings > Advanced Settings > Allow auto-make to start even if developed application is currently running 로 변경 됨 (비록 개발된 애플리케이션이 현재 기동 중이라도 시작하기 위해 auto-make를 허락해라)

JAVA 2021. 10. 8. 12:10

[intellij] springboot bootrun 정지 시키기

1. intellij에서 하단의 terminal 탭을 선택합니다. 2. 다음의 명령을 입력합니다. ./gradlew -stop bootrun을 실행시킬 때 gradle 데몬을 통해서 스프링부트가 기동됩니다. 그래서 제대로 정지하지 않을 경우 gradlew를 통해서 데몬을 정지시킬 수 있습니다.

JAVA 2021. 10. 8. 11:48

[intellij] @SpringBootTest 인식 불가 문제

에러 내용: package org.springframework.boot.test.context does not exist 1. File > Settings (Ctrl+Alt+S) 2. Build, Execution, Deployment에서 Build and run using: 과 Run tests using: 을 Gradle로 변경하여 적용 3. 이후 빌드 성능을 위해 필요 시 Intellij IDEA로 변경할 수 있음.

JAVA 2021. 10. 8. 11:41

[intellij] 선택 영역에서 치환 Ctrl + Shift + R

1. 문자열을 변환하고자 하는 영역을 선택한다. 2. Ctrl + Shit + R을 통해서 치환 창을 표시한다. 3. Scope에서 selection을 선택한다. 4. 찾을 문자와 치환할 문자를 넣고 치환한다. Scope에는 Prject, 현재 열려 있는 파일들, 현재 파일 등 다양한 옵션이 있다.

JAVA 2021. 10. 6. 12:01

[JAR] 기본 Manifest 속성이 없습니다.

기본 Manifest 속성이 없다는 것은 단순한 jar로 만들었을 때 package, library 등의 실생을 위한 모듈, 속성 또는 설정 파일이 존재하지 않아서 발생하는 에러입니다. 다음과 같이 build 설정을 변경합니다. intellij Gradle > 프로젝트 명 > Tasks > build > bootJar eclipse export wizard > Java > Runnable JAR 생성한 jar 파일의 실행 java -jar myexe.jar 또는 별도의 shell을 작성하여 위의 코드를 작성하고 서버 기동 시 그 shell을 실행하도록 합니다. 파일은 실행 권한이 있어야 합니다. chmod +x myexe.sh 참고) Ubuntu에서는 Startup Application이라는 설정 화면을..

JAVA 2021. 9. 2. 12:06

[intellij] 폴더 또는 파일을 .gitignore에 추가하기

1. 폴더 또는 파일을 우 클릭 2. Git > Add to .gitignore > .gitignore 3. .gitignore 파일 확인 참고: IntelliJ 버전 IntelliJ IDEA 2021.2 (Community Edition) Build #IC-212.4746.92, built on July 27, 2021 Runtime version: 11.0.11+9-b1504.13 amd64 VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. Windows 10 10.0 GC: G1 Young Generation, G1 Old Generation Memory: 2048M Cores: 8 Registry: debugger.watches.in.variables=fals..

JAVA 2021. 8. 30. 15:36

추가 정보

페이징

이전
1 2
다음
TISTORY
모나드 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바