https://blog.jetbrains.com/idea/2019/06/intellij-idea-2019-2-eap6-gradle-dependencies-diagram-and-more/

 

IntelliJ IDEA 2019.2 EAP6: Gradle Dependencies Diagram and More | IntelliJ IDEA Blog

IntelliJ IDEA 2019.2 EAP6: Gradle Dependencies Diagram and More The new EAP build for the upcoming IntelliJ IDEA 2019.2 is here, with some highly anticipated features. Let’s dive right in and have a look at the details. Gradle Dependencies diagram With Int

blog.jetbrains.com

 

alt+컨트롤+쉬프트+u 

 

내가 보고자하는 gradle에서 하는 것을 추천 

Posted by 삽지리
,

https://stackoverflow.com/questions/7405046/can-i-auto-restart-tomcat-jvm-on-out-of-memory-exception

 

Can I auto restart tomcat jvm on out of memory exception

I know that this is not "best practice" but I would like to know if I can auto restart tomcat if my deployed app throws an outofmemory exception

stackoverflow.com

 

-XX:OnOutOfMemoryError="/yourscripts/tomcat-restart"

 

를 하면 된다고 함

 

Posted by 삽지리
,

org.springframework.data.mapping.model.MappingInstantiationException: Failed to instantiate

xxxx.xxx.xxx(패키지 경로)

using constructor 

xxxx.xxx.xxx

(long ,long,java.lang.String,int,int) 

with arguments 

null ,1578374290,,0,1

 

와 같이 오류가 발생

원인은 첫번쨰 long이 새로 추가된 필드라 mongodb에 없는 값이기 때문에 생성자에서 null을 넣었는데 long이라서 

오류가 나온것

long을 Long로 수정하여 처리함

 

Posted by 삽지리
,