getClass() 를 오류 없이 사용하고 있었는데 해당 클래스를 static 으로 변경했더니 아래와 같이 오류가 발생. 

Cannot make a static reference to the non-static method getClass() from the type Object

< 해결책 >

getClass() -> Class명.class

예) getClass().getClassLoader() -> Test.class.getClassLoader()