분류 전체보기
Multiple markers at this line 종류별 해결법
- 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 p..
The method getConnection() is undefined for the type DataSource 해결책
위에 import javax.sql.DataSource; 를 적어주자
Logger cannot be resolved to a type 해결책
pom.xml에 들어가서 log4j를 검색한후 runtime를 주석처리해준다. " target="_blank" rel="noopener">-->
@RunWith(SpringJUnit4ClassRunner.class) 에러 해결법
@Runwith import를 성공적으로 했는데 아직도 에러가 나는경우 SpringJUnit4ClassRunner를 import하지 않았기때문이다. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; 를 추가해주자
@Setter Autowired cannot be resolved to a type 해결법
위에 import org.springframework.beans.factory.annotation.*; 추가해보자
The matching wildcard is strict, but no declaration can be found for element 'context:component-scan 해결법
xmlns:context="http://www.springframework.org/schema/context" 추가 하고 xsi:schemaLocation에 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd 를 추가한다.
[Gmod Lua:문법] 1-7. 함수선언
변수선언에 function을 넣으면된다. 전역은 local을 빼면되고 1. 지역함수 local funciton test() //do thing end 2. 전역함수 function test() //do thing end [메인으로 돌아가기]