Errors(24)
-
[error] No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.1 was found. The consumer was configured to find a runtime of a library compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well a..
No matching variant of org.springframework.boot:spring-boot-gradle-plugin:3.0.1 was found. The consumer was configured to find a runtime of a library compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '7.6' but: - 인텔리제이 (community 버전, 무료버전) - 맥OS 환경 - gradle - java 11 https://start.spring.io/ 에서 zi..
2023.01.05 -
[Error] error Component name "Home" should always be multi-word vue/multi-word-component-names
error Component name "Home" should always be multi-word vue/multi-word-component-names vue에서는 위와 같이 name의 값을 두 단어의 조합으로 해야 한다는 규칙(?)이 있다. 나는 이러한 필요성을 못 느껴서 이에 대한 설정을 OFF하기로 했다. 그래서, package.json에서 "vue/multi-word-component-names": 0 해당 설정값을 넣어 주고 다시 실행을 했더니, 정상적으로 에러 없이 실행이 됐다.
2022.08.28 -
[Error] Parsing error: The keyword 'import' is reserved
회사에서 vue.2 버전으로 프로젝트를 진행을 하다보니 2버전으로 공부를 하기 위해 vue프로젝트를 생성 했는데, 처음부터 Import 에러가 !!! 아무것도 안 했는데 시작부터 에러는 좀 선 넘는짓 아닌가 ㅡㅡ;; 아무튼 검색을 하고 봤더니 .eslintrc.js에서 설정을 해주면 되는데... 나는 .eslintrc.js가 없었다. 그래서 루트 경로에서 파일을 만들고, // .eslintrc.js module.exports = { // 현재 eslintrc 파일을 기준으로 ESLint 규칙을 적용 root: true, // 추가적인 규칙들을 적용 env: { node: true, }, parserOptions: { parser: "babel-eslint", }, extends: [ "eslint:rec..
2022.08.19 -
[Errors] org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException
io.springfox springfox-swagger-ui 2.9.2 io.springfox springfox-swagger2 2.9.2 pom.xml @Configuration @EnableSwagger2 public class AppConfig{ @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2).consumes(getConsumeContentTypes()).produces(getProduceContentTypes()) .apiInfo(getApiInfo()).select() .apis(RequestHandlerSelectors.basePackage("com.diquest.hanabank.controller")) .p..
2022.03.24 -
[Errors] Caused by: java.lang.IllegalStateException: Failed to introspect Class [org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration] from ClassLoader
https://exerror.com/failed-to-introspect-class-org-springframework-security-config-annotation-web-configuration-websecurityconfiguration/ [Solved] Failed to introspect Class [org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration] To Solve Failed to introspect Class [org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration] Erro..
2022.03.21 -
[Errors] H2 Hibernate 관련에러 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSourceScriptDatabaseInitializer' defined in class path resource
spring: h2: console: enabled: true datasource: url: jdbc:h2:mem:testdb driver-class-name: org.h2.Driver username: sa password: jpa: database-platform: org.hibernate.dialect.H2Dialect hibernate: ddl-auto: create-drop properties: hibernate: format_sql: true show_sql: true defer-datasource-initialization: true jwt: header: Authorization secret: c2lsdmVybmluZS10ZWNoLXNwcmluZy1ib290LWp3dC10dXRvcmlhbC..
2022.03.12