본문 바로가기

kotlin6

[intellij+kotlin+springboot+vue] intellij 터미널에서 vue를 실행시 권한문제 발생 해결방법 IntelliJ에서 kotlin+spring boot+vue+gradle 환경에서 터미널에서 "vue ui" 명령어를 실행할 경우, 다음과 같은 오류가 발생되었습니다. PS E:\d\frontend> vue ui vue : C:\Users\xxx\AppData\Roaming\npm\vue.ps1 파일을 로드할 수 없습니다. C:\Users\xxx\AppData\Roaming\npm\vue.ps1 파일이 디지털 서명되지 않았습니다. 현재 시스템에서 이 스크립트를 실행할 수 없습니다. 스크립트 실행 및 실행 정책 설정에 대한 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/?LinkID=135170)를 참조하십시오.. 위치 줄:1 문자:1 .. 2023. 7. 7.
[intellij+kotlin+springboot+vue]ERROR Error: Source and destination must not be the same. 해결 방법 IntelliJ에서 kotlin+spring boot+vue+gradle 환경에서 터미널에서 "npm vue build" 명령어를 실행할 경우, 다음과 같은 오류가 발생되었습니다. ERROR Error: Source and destination must not be the same. 그리고 해결은 다음과 같이 하였습니다. "vue.config.js" 파일에서 "outputDir"과 "indexPath"의 경로를 다르게 하면 됩니다. 1. 수정하기 전의 "vue.config.js" 파일의 소스코드 내용 const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ lintOnSave: false, // 오류 상황 미리.. 2023. 7. 3.
[IntellinJ+Kotlin+gradle] /org/gradle/tooling/BuildException 오류 해결 방법 IntelliJ에서 kotlin+spring boot+gradle 환경에서 "build.gradle.kts" 파일에서 이런 오류가 발생되었습니다. 그리고 해결은 다음과 같이 하였습니다. /org/gradle/tooling/BuildException (java.lang.NoClassDefFoundError: /org/gradle/tooling/BuildException. ".idea/workspace.xml" 파일에서 다음의 소스코드를 제거해줍니다. 2023. 6. 29.
spring boot과 JPA 에서 InvalidDataAccessApiUsageException 에러 해결하기 Spring Boot에서 JPA는 자바 ORM 기술의 표준 스펙인 JPA(Java Persistence API)를 사용하여 데이터베이스에 접근하는 방법입니다. JPA를 사용하면 데이터베이스와의 상호작용을 추상화할 수 있으며, 데이터베이스의 변경 사항에 대응하는 코드 변경을 최소화할 수 있습니다. Spring Boot에서 JPA를 사용 시, 다음과 같은 에러가 발생하였습니다. 처음 URL을 호출할 때는 정상, 두 번째 호출할 때는 아래와 같은 에러 발생 org.springframework.dao.InvalidDataAccessApiUsageException: Parameter value [\] did not match expected type [java.lang.String (n/a)]; nested ex.. 2023. 4. 4.
반응형