Archive
Archive for February, 2011
SVN Tagging.
February 14, 2011
Leave a comment
Tagging을 하기 위해선 release 된 버젼이 있어야한다.
릴리즈된 버젼은 당연히 버젼명에서 “SNAPSHOT” 딱지를 뗀 상태를 이야기한다.
$ svn ci $ ls tags trunk $ svn cp /trunk/ tags/PROJECT-NAME_VERSION
1. Release 버젼을 commit한다.
2. Release 버젼을 tags 폴더 밑으로 “svn cp”한다.
3. 이후 trunk의 버전에 “SNAPSHOT”를 추가하여 (버전)업하면된다.
(예: 1.0-alpha-1 => 1.0-alpha-2-SNAPSHOT)
4. 필요에 따라 tags 폴더의 “svn up”를 수행한다.
java.lang.InstantiationError
February 10, 2011
Leave a comment
public class InstantiationError
extends IncompatibleClassChangeError
Thrown when an application tries to use the Java new construct to instantiate an abstract class or an interface.
Normally, this error is caught by the compiler; this error can only occur at run time if the definition of a class has incompatibly changed.
Since: JDK1.0
See Also: Serialized Form
Categories: JAVA
JAVA API InstantiationError