Dev_Log 79

[SpringBoot] Application run failedorg.springframework.beans.factory.BeanCreationException: Error creating bean with name 'quartzDataSourceInitializer' defined in class path resource [org/springframework/boot/autoconfigure/quartz/QuartzAutoConfiguration..

-스프링 부트 datasource를 오라클로 설정한뒤 구동시 에러 발생 [에러 로그] Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'quartzDataSourceInitializer' defined in class path resource [org/springframework/boot/autoconfigure/quartz/QuartzAutoConfiguration$JdbcStoreTypeConfiguration.class]: Invocation of init method failed; nested exception is java.lang.RuntimeEx..

Dev_Log 2022.11.21

[Java] office365 SMTP 메일발송 실패

-잘되던 office365를 통한 SMTP 메일발송이 javax.mail.AuthenticationFailedException 에러를 발생하며 메일발송이 실패 (메일 계정,비밀번호는 문제없는상태) javax.mail.Session의 setDebug(true)로 디버깅 결과 421 4.7.66 TLS 1.0 and 1.1 are not supported. Please upgrade/update your client to support TLS 1.2. Visit https://aka.ms/smtp_auth_tls. [SL2P216CA0101.KORP216.PROD.OUTLOOK.COM] DEBUG: setDebug: JavaMail version 1.4.1ea-SNAPSHOT DEBUG: getProvide..

Dev_Log 2022.03.18

[ios] 웹뷰 아이패드에서 파일다운로드 에러

WKWebView에서 파일다운로드시 아이폰에서 문제없는 코드가 아이패드에서 에러발생 [LayoutConstraints] Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. ✔ Solution 아이패드일경우 파일다운로드 팝업의 위치를 세..

Dev_Log 2022.03.18

[Eclipse] sun.misc.BASE64Encoder cannot be resolved to a type

-작성된 코드중 sun.misc.BASE64Encoder가 쓰이는 부분이 있는데 sun.misc.BASE64Encoder cannot be resolved to a type 에러가 발생 ✔ Solution 해결하기위해 시도한 방법 3가지이고 1,2번은 실패했고 3번방법으로 성공했다 1. pom.xml에 디펜던시 추가해보기(실패) sun.misc BASE64Decoder unknown 2. 이클립스 설정 바꿔주기( 구글링하면 나오는 방법인데 실패 ) Window > Preferences > Java > Compiler > Errors/Warnings ▶Deprecated and restriced API > Forbidden refernce (access rules)값을 Error(기존값) → Warning..

Dev_Log 2021.12.06

[SpringSecurity] The absolute uri: [http://www.springframework.org/security/tags] cannot be resolved in either web.xml or the jar files deployed with this application

-스프링 시큐리티 JSTL을 사용하려고 하던중 발생 [에러 로그] The absolute uri: [http://www.springframework.org/security/tags] cannot be resolved in either web.xml or the jar files deployed with this application ✔ Solution 스프링 시큐리티 태그 디펜던시를 추가 org.springframework.security spring-security-taglibs 본인의 스프링시큐리티 버전 작성

Dev_Log 2021.11.23

[SpringBoot] "status":999,"error":"None","message":"No message available"

-스프링 시큐리티 로그인 성공시 에러 발생 [에러 로그] "status":999,"error":"None","message":"No message available" ✔ Solution 구글링 결과 파비콘이 없어서 나는 에러로 추정 정적리소스 무시 패턴에 web.ignoring().antMatchers("/favicon.ico", "/resources/**", "/error"); 를 작성해주면 해결 Spring security redirects to page with status code 999 After successful login spring redirects to /error page with the following content { "timestamp" : 1586002411175, "stat..

Dev_Log 2021.11.18

[SpringBoot] Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

-SpringBoot+스프링 시큐리티 구성에 Swagger를 추가 설정한뒤 서버구동시 에러 발생 [에러 로그] org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException: Cannot invoke "org.springframework.web.servlet.mvc.condition.PatternsRequestCondition.toString()" because the return value of "springfox.documentation.spi.service.context..

Dev_Log 2021.11.18

[SourceTree] Support for password authentication was removed on

-소스트리에서 작업수행시 에러 발생 [에러 로그] remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. [번역] 원격: 비밀번호 인증 지원이 2021년 8월 13일에 제거되었습니다. 대신 개인 액세스 토큰을 사용하십시오. ✔ Solution 번역을 보면 알수있듯이 비밀번호 인증지원이 2021년 08월 13일에 중지됐다고 한다. 개인 엑세스 토큰을 사용하라고 한다. 이전에 Git Bash로 작업수행시 개인 토큰을 사용하여 정상수행 되도록 했었는데 SourceTree에서 기존 비밀번호로 계속 시도를 하고있어서 구글링을 했다 이번에는 SourceTre..

Dev_Log 2021.09.07

[Git] Support for password authentication was removed on August 13, 2021. Please use a personal access token instead

-계정/비밀번호 맞게 입력해도 계속해서 에러가 발생 [에러 로그] remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. [번역] 원격: 비밀번호 인증 지원이 2021년 8월 13일에 제거되었습니다. 대신 개인 액세스 토큰을 사용하십시오. ✔ Solution 번역을 보면 알수있듯이 비밀번호 인증지원이 2021년 08월 13일에 중지됐다고 한다. 개인 엑세스 토큰을 사용하라고 한다. 1. 계정 클릭후 ➡ Settings 페이지로 이동한다 2. Settings 페이지에서 보이는 메뉴중 Developer settings 메뉴를 클릭한다 3. Person..

Dev_Log 2021.08.31
728x90
반응형