336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
- The type "클래스이름" must implement the inherited abstract method InitializingBean.
afterPropertiesSet()
@Override
public void afterPropertiesSet() throws Exception {
System.out.println("afterPropertiesSet()");
//setAdminId(env.getProperty("admin.id"));
//setAdminPw(env.getProperty("admin.pw"));
}
- The type "클래스이름" must implement the inherited abstract method DisposableBean.
destroy()
@Override
public void destroy() throws Exception {
System.out.println("destroy()");
}
'Java Spring > Tip' 카테고리의 다른 글
logger cannot be resolved 해결법 (0) | 2021.06.26 |
---|---|
log4j Multiple annotations found at this line 에러 해결 (0) | 2021.06.21 |
스프링 프로젝트 생성 종류 선택 팁 (0) | 2021.06.06 |
The method getConnection() is undefined for the type DataSource 해결책 (0) | 2021.06.06 |
Logger cannot be resolved to a type 해결책 (0) | 2021.06.06 |