개발 관련(35)
-
[WARN][TaskAgile] npm does not support Node.js v12.18.3
> npm run test:unit && npm run test:e2e npm WARN npm npm does not support Node.js v12.18.3 npm WARN npm You should probably upgrade to a newer version of node as we npm WARN npm can't make any promises that npm will work with this version. npm WARN npm Supported releases of Node.js are the latest release of 6, 8, 9, 10, 11. npm WARN npm You can find the latest version at https://nodejs.org/ ERRO..
2020.12.16 -
[ERROR][TaskAgile] Validation Error: @vue/cli-plugin-unit-jest ;
● Validation Error: Module @vue/cli-plugin-unit-jest should have "jest-preset.js" or "jest-preset.json" file at the root. Configuration Documentation: https://jestjs.io/docs/configuration.html ERROR 내용 필요한 파일이 없다는 내용. 해결 방법 해당 파일 추가 // ./front-end/jest.config.js module.exports = { moduleFileExtensions: [ 'js', 'jsx', 'json', 'vue' ], transform: { '^.+\\.vue$': 'vue-jest', '.+\\.(css|styl|less|sa..
2020.12.16 -
[ERROR][TaskAgile] Cannot find module 'node-sass'
error in ./src/views/RegisterPage.vue?vue&type=style&index=0&id=71576996&lang=scss&scoped=true& Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js): ModuleBuildError: Module build failed (from ./node_modules/sass-loader/lib/loader.js): Error: Cannot find module 'node-sass' ERROR 내용 node-sass모듈을 찾을 수 없다. 해결 방법 명령어 입력 npm i node-sass 참고 사이트 : qastack.kr/programming/481..
2020.12.16 -
[ERROR][TaskAgile] Could not locate module @/utils/error-parser mapped as:
FAIL tests/unit/utils.error-parser.spec.js ??Test suite failed to run n Configuration error: Could not locate module @/utils/error-parser mapped as: C:\Users\ttogl\practice\TaskAgile\vuejs.spring-boot.mysql\front-end\src\utils/error-parser. Please check your configuration for these entries: { "moduleNameMapper": { "/^@\/(.*)$/": "C:\Users\ttogl\practice\TaskAgile\vuejs.spring-boot.mysql\front-en..
2020.12.07 -
[ERROR][TaskAgile] .NoUniqueBeanDefinitionException, import한 패키지와 같은 이름일 때
이전 포스팅에서 같은 에러가 났다. zena1010.tistory.com/12 Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2020-11-30 17:33:28.392 ERROR 4344 --- [lication.main()] o.s.b.d.LoggingFailureAnalysisReporter : ... Description: Parameter 2 of constructor in com.taskagile.domain.common.mail.DefaultMailManager required a single bean, but 2 were found: -..
2020.11.30 -
[TaskAgile] 03. 스프링 시큐리티 - 02. 이메일 보내기
이전 페이지 : zena1010.tistory.com/13 다음 페이지 : 스프링 시큐리티 - 이메일 보내기 목표 웹 어플리케이션 보호 이메일 보내기 end-to-end 통합 테스트 수행 자바 단위 테스트 범위 리포트(coverage report) 추가 구현 pom.xml에 추가 ... org.springframework.boot spring-boot-starter-mail org.springframework.boot spring-boot-configuration-processor true ... org.freemarker freemarker ... starter-boot-starter-mail : JavaMailSender와 같은 인터페이스 제공 freeamarker 라이브러리 존재로 인해 스프링 부트..
2020.11.30