1 2 3 4 5 |
<img src="" align="absmiddle"> (X) <img src="" style="vertical-align:middle"> (O) |
[카테고리:] Eclipse 에러 해결
Attribute (language) is obsolete. Its use is discouraged in HTML5 documents. script
1 2 3 4 5 6 |
<script language="javascript"> (X) <script type="text/javascript"> (O) <script> (O) |
No grammar constraints (DTD or XML Schema) referenced in the document.
다음과 같은 경고 메시지가 뜨면 아래와 같이 DOCTYPE을 입력합니다. No grammar constraints (DTD or XML Schema) referenced in the document.
1 2 3 4 |
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration> |
Tomcat v8.0 경우 디비 연결 오류
1 2 3 4 5 6 7 |
Could not load the Tomcat server configuration at \Servers\Tomcat v8.0 Server at localhost-config. The configuartion may be corrupt or incomplete. 요소 유형 "Resouce"과(와) 연관된 속성 이름 "rDrirver" 다음에는 "=" 문자가 와야 합니다. |
Tomcat -> server.xml 파일 내용중 디비연결부분 오류
import java.* cannot be resolved / Apache Tomcat v6.0 is not defined
JRE 버전을 맞게 세팅한 후에도 Markser 사항에 오류 메시지가 계속 나오는 경우 1. Projcet->Build Automatically (선택 해지 하고) 2.Clean 선택후 프로세서 진행 후 3. Projcet->Build Automatically (선택) 4. 시간좀 걸려고 / 안되면 프로그램 재실행 Tomcat 버전 오류인 경우 Properties -> 검색 Project Facets 맞는 버전 으로 수정
Dynamic Web Project option missing in Eclipse
Go to Eclipse->Help menu->Install new software choose the Web, XML, Java EE plugin and install it.
한글이 깨지는 경우
깨진 파일 속성이 UTF-8 로 변경 후 다시 입력/또는 붙여넣는다.
UncategorizedSQLException 디비 연결 에러
디비 Select 소스에서 다음과 같은 에러시
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
10월 14, 2020 2:20:44 오후 com.test.TEST.action.TESTScAction handleRequest 심각: Error : org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null]; error code [0]; --- The error occurred in com/test/common/sqlMap/TESTSearch.xml. --- The error occurred while executing query. --- Check the SELECT ...... FROM................ --- Check the SQL Statement (preparation failed). --- Cause: java.sql.SQLException: Cannot create JDBC driver of class '' for connect URL 'null'; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException: --- The error occurred in com/test/common/sqlMap/TESTSearch.xml. --- The error occurred while executing query. --- Check the SELECT........ FROM................. --- Check the SQL Statement (preparation failed). --- Cause: java.sql.SQLException: Cannot create JDBC driver of class '' for connect URL 'null' |
Server.xml 내용중 HOST 내용에 아래 디비연결 Resource 테그 내용 추가
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true"> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t "%r" %s %b" prefix="localhost_access_log" suffix=".txt"/> <Context docBase="test" path="/" reloadable="true" source="org.eclipse.jst.jee.server:test"> <Resource auth="Container" driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver" maxActive="50" maxIdle="20" maxWait="10000" name="jdbc/TESTDB" password="**********" testOnBorrow="true" type="javax.sql.DataSource" url="jdbc:sqlserver://***.***.***.****;databaseName=TEST;" username="TESTUSER"/> </Context> </Host> |
참고 : source=”org.eclipse.jst.jee.server:test” 정보 반드시 필요
http://localhost:8080/Directory/
이클립스로 서버를 실행했을 때 다음과 같이 ROOT(/)에서 실행되지 않고 http://localhost:8080/Directory/ 로 나오는 경우 수정 1. Properties ->Web project Settings 2. Server – tomact 를 더블클릭 후 Module 탭 에서 Path / Edit 로 수정
import java.util.map cannot be resolved / jre1.8.0 세팅
Server Tomcat v8.0 Server at localhost failed to start. 소스상에 에러가 있어 수정 후 다시 시작 하면 됩니다. 소스에 에러는 import java.util.map cannot be resolved 이고 Libraries 경로 에러 입니다. Right click on project – >BuildPath – >Configure BuildPath – >Libraries tab – > Double click on JRE SYSTEM LIBRARY – >Then select alternate …
import java.util.map cannot be resolved / jre1.8.0 세팅 더보기