전체 글

전체 글

    [TIP] 소스모드 개발시 참고하면 좋은 사이트

    [TIP] 소스모드 개발시 참고하면 좋은 사이트

    1. 소스모드 API : https://sm.alliedmods.net/new-api/ 2. Json 온라인 편집기 : https://awebanalysis.com/ko/json-parser-online/ 3. 쿼리 문법 검사 : https://www.eversql.com/sql-syntax-check-validator/ 4. 시간 표시 : https://www.ibm.com/docs/en/cmofm/9.0.0?topic=SSEPCD_9.0.0/com.ibm.ondemand.mp.doc/arsa0257.htm

    [SM:익스텐션] 개발 환경

    [SM:익스텐션] 개발 환경

    1. Visual Stuido 다운로드 소스모드 익스텐션 빌드는 smvc10 이상의 버젼이 없다. 즉 비쥬얼스튜디오 2010밖에 안된다는것이다.. 절망 2021/12/01 현재 기준으로 비쥬얼스튜디오 최신 버젼은 2022다. 비쥬얼스튜디오 2022를 설치해서 아래와 같은 뻘짓을 해봤는데 도저히 안된다. 그냥 비쥬얼 스튜디오 C++ 2010 Express를 설치하자! 설치방법은 아래 링크에 친절히 나와있다. https://www.bearpooh.com/58 Visual Studio Express 2010 개발 환경 구성 Visual Studio Express 버전은 MS에서 무료로 제공하는 개발툴이다. 현재는 Community Edition으로 제공하고 있으며, Visual Studio Code라는 별도 ..

    글옵 티베트 촛불

    글옵 티베트 촛불

    models/props/gg_tibet/candlestickwideshortonplate.mdl 마테리얼은 materials\models\props\gg_tibet 가서 압축풀면됨.

    logger cannot be resolved 해결법

    logger cannot be resolved 해결법

    위에 import가 되있는지 확인해보자. import org.slf4j.Logger; import org.slf4j.LoggerFactory;

    log4j Multiple annotations found at this line 에러 해결

    log4j Multiple annotations found at this line 에러 해결

    log4j설정을 완료했음에도 불구하고 에러가 뜰때가 있다. 이때는 외부경로로 설정해주면 해결된다. 위 코드의 형광색으로 색칠한 부분을 아래내용으로 바꿔주자. http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/xml/doc-files/log4j.dtd

    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 해결책

    The method getConnection() is undefined for the type DataSource 해결책

    위에 import javax.sql.DataSource; 를 적어주자