2. ATC 2급 자격증 신청
아직.. 게임을 안질렀네? ㅋㅋㅋ
'개소리 왈왈' 카테고리의 다른 글
| 호의는 호의일 뿐이려나.. (2) | 2014.08.10 |
|---|---|
| atc 2급 자격증 도착! (0) | 2014.05.20 |
| 벨킨 홈페이지 오류? (0) | 2014.04.25 |
| 왜 학원을 다니는걸까.. (0) | 2014.04.22 |
| 끄아아아아아아앙 ㅠㅠ (0) | 2014.03.24 |
| 호의는 호의일 뿐이려나.. (2) | 2014.08.10 |
|---|---|
| atc 2급 자격증 도착! (0) | 2014.05.20 |
| 벨킨 홈페이지 오류? (0) | 2014.04.25 |
| 왜 학원을 다니는걸까.. (0) | 2014.04.22 |
| 끄아아아아아아앙 ㅠㅠ (0) | 2014.03.24 |
| <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE tiles-definitions PUBLIC
"-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN"
"http://tiles.apache.org/dtds/tiles-config_2_0.dtd">
<tiles-definitions>
<!-- Default Main Template -->
<definition name=".mainTemplate" template="/WEB-INF/templates/main.jsp">
<put-attribute name="title" value="Simple Tiles 2 Example" type="string" />
<put-attribute name="header" value="/WEB-INF/templates/header.jsp" />
<put-attribute name="footer" value="/WEB-INF/templates/footer.jsp" />
<put-attribute name="menu" value="/WEB-INF/templates/menu.jsp" />
<put-attribute name="body" value="/WEB-INF/templates/blank.jsp" />
</definition>
<definition name="index" extends=".mainTemplate">
<put-attribute name="body" value="/WEB-INF/jsp/index.jsp" />
</definition>
<definition name="info/about" extends=".mainTemplate">
<put-attribute name="body" value="/WEB-INF/jsp/info/about.jsp" />
</definition>
</tiles-definitions>
[링크 : http://www.springbyexample.org/examples/simple-tiles-spring-mvc-webapp-tiles-xml-config.html] |
| struts2 result type input (0) | 2014.05.19 |
|---|---|
| struts2 result type (0) | 2014.05.17 |
| struts2 / tiles 연동시 에러 (0) | 2014.05.16 |
| struts2 .action 확장자 변경하기 (2) | 2014.05.14 |
| strtus2 레퍼런스 (0) | 2014.04.30 |
| 부트스트랩 - 웹개발 프레임워크 (0) | 2014.07.07 |
|---|---|
| jsp / php 기본 문법 비교 (0) | 2014.07.07 |
| sql designer(web) (0) | 2014.05.11 |
| 호스팅어 / 무료 웹 호스팅 (4) | 2014.04.27 |
| ie8 과 크롬의 html 태그 파싱 차이점 (0) | 2014.04.10 |
| 1) Unchecked Exception
The exceptions that are not checked at compile time are called unchecked exceptions, classes that extends RuntimeException comes under unchecked exceptions. Examples of some unchecked exceptions are listed below.
2) Checked Exceptions
Exceptions that are checked at compile-time are called checked exceptions, in Exception hierarchy all classes that extends Exception class except UncheckedException comes under checked exception category.
|
| A checked exception is an exception that must be either caught or declared in a method where it can be thrown. For example, the java.io.IOExceptionis a checked exception. To understand what is a checked exception, consider the following code: |
| Unchecked, uncaught or runtime exceptions are exceptions that are not required to be caught or declared, even if it is allowed to do so. So a method can throw a runtime exception, even if this method is not supposed to throw exceptions. For example, ConcurrentModificationException is an unchecked exception.
The unchecked exceptions can only be the RuntimeException and its subclasses, and the class Error and its subclasses. All other exception classes must be handled, otherwise the compiler gives an error.
Sometime it is desirable to catch all exception for logging purposes, then throw it back on. For example, in servlet programming when application server calls the server doPost(), we want to monitor that no exception even runtime exception happened during serving the request. The application has its own logging separate from the server logging. The runtime exceptions would just go through without detecting it by the application. The following code would check all exceptions, log them, and throw it back again.
|
| predefined annotation /java (0) | 2014.06.27 |
|---|---|
| JUnit tutorial (0) | 2014.06.27 |
| Class.forName (0) | 2014.05.09 |
| JDNI - Java Directory & Naming Interface (0) | 2014.05.09 |
| jdk 1.5 - annotation / @ (0) | 2014.05.08 |
| CSS / JS 파일 용량 줄이기 (0) | 2015.09.18 |
|---|---|
| css selector (0) | 2015.09.14 |
| css 관련 (4) | 2015.09.08 |
| 크롬과 IE에서 CSS 차이점 - body / background-color (2) | 2011.03.09 |
| CSS Naked day! (2) | 2009.04.09 |
| win7 / vista usb 설치 (1) | 2014.06.14 |
|---|---|
| Visual C++ Runtime / Buffer overrun detected (0) | 2014.05.18 |
| vhd 사용시 winsat / superfetch 레지스트리 차이점 (0) | 2014.05.09 |
| winsat (0) | 2014.05.08 |
| 레디 부스트 관련 레지스트리 (0) | 2014.05.07 |
| <struts>
<constant name="struts.action.extension" value="html"/>
</struts>[http://www.mkyong.com/struts2/how-to-remove-the-action-suffix-extension-in-struts-2/] |
| struts2 result type input (0) | 2014.05.19 |
|---|---|
| struts2 result type (0) | 2014.05.17 |
| struts2 / tiles 연동시 에러 (0) | 2014.05.16 |
| tiles xml 설정(상속) (0) | 2014.05.15 |
| strtus2 레퍼런스 (0) | 2014.04.30 |
| ibatis 쿼리에 list 타입 인자로 넣기 (0) | 2014.05.28 |
|---|---|
| ibatis / mybatis 데이터가 비어있는 경우(null) (0) | 2014.05.23 |
| ibatis namespace (2) | 2014.05.22 |
| ibatis2 map (0) | 2014.05.21 |
| ibatis / log4j 를 이용한 sql문 덤프 (0) | 2014.05.21 |
동영상 서비스가 종료되어 해당 콘텐츠를 재생할 수 없습니다.
동영상 서비스가 종료되어 해당 콘텐츠를 재생할 수 없습니다.
동영상 서비스가 종료되어 해당 콘텐츠를 재생할 수 없습니다.
동영상 서비스가 종료되어 해당 콘텐츠를 재생할 수 없습니다.
그러면 F-PCB가 나오고 ZIF 커넥터로 되어있으니
꺾이거나 찢어지지 않도록 주의!
검은색 비닐을 이용해서
우측으로 밀어낸후 뒤쪽방향을 들어올려 뺴준다.
그러고 보니 .. ZIF 커넥터를 안빼주고 했네.. ㄷㄷㄷ
아무튼.. 하드를 뒤집어서 ZIF 소켓의 걸쇠를 풀어주고 케이블을 분리한다.
이렇게 수직으로 세워줘야 케이블이 빠지니
손톱으로 조심스럽게 들어올려주면 된다.
좌 - 구형 HDD / 우 - 새로 장착할 SSD
일단 하드 + 고무 가이드 + ESD 방지용 전도식 스폰지 셋트이니 적당히 옮겨준다.
고무로 충격을 흡수하면서 공간을 가득채워 흔들리지 않도록 하는 3d drvie gruad?
조립은 분해의 역순!
따.. 딱히 사진 찍기 귀찮은건 아냐 흥!
이녀석 은근 애물단지면서 잘 생각한건데..
위쪽으로 밀어넣어주면서 나사를 고정하는 식으로 커넥터와 하드를 동시 고정한다.
암튼.. 외장 DVD로 부팅해서 복구를 선택했는데 없다고 배짼다!!!
끄엉 겨우겨우 해결!
알고보니.. 백업해서 나온 결과물(?)인
WindowsImageBackup 이라는 폴더가 최상위 경로에 있어야 한다.
USB 하드가 E 드라이브라면
E:\WindowsImageBackup 로 최상위에 두지 않으면 검색을 하지 못한다.
디스크 제외는 드라이브가 여러개일 경우 파티션 손대지 말라고 하는건데
그냥 밀꺼니까 다음눌러줘도 된다.
SSD 니까.. 15GB 복구 하는데 한.. 5분 걸린듯?
| 트리플 모니터 시스템 구축완료 (0) | 2014.06.07 |
|---|---|
| readyboost가 활성화 되지 않아!!! (0) | 2014.05.26 |
| ssd 교환 (0) | 2014.05.13 |
| ssd 구매 두둥! (0) | 2014.05.12 |
| hp 2710p 2730p 2730p ... ㅠㅠ (0) | 2014.05.09 |
| readyboost가 활성화 되지 않아!!! (0) | 2014.05.26 |
|---|---|
| hp 2710p SSD 교체 (0) | 2014.05.14 |
| ssd 구매 두둥! (0) | 2014.05.12 |
| hp 2710p 2730p 2730p ... ㅠㅠ (0) | 2014.05.09 |
| hp 2710p 지름정리 (0) | 2014.05.06 |