JAVA (360) 썸네일형 리스트형 SELECT TABLE_NAME, 컬럼위치 확인하기 + 다양한 테이블에서 동일 컬럼 조회 ecoFood 데이터베이스에 customer_name이 필드인 table이름 찾아내기SELECT TABLE_NAMEFROM INFORMATION_SCHEMA.COLUMNSWHERE COLUMN_NAME = 'customer_name'AND TABLE_SCHEMA = 'ecoFood'; Caused by: org.xml.sax.SAXParseException; lineNumber: 104; columnNumber: 15; 요소 콘텐츠는 올바른 형식의 문자 데이터 또는 마크업으로 구성되어야 합니다. 아래 sql에서 에러가났다.Caused by: org.xml.sax.SAXParseException; lineNumber: 104; columnNumber: 15; 요소 콘텐츠는 올바른 형식의 문자 데이터 또는 마크업으로 구성되어야 합니다. SELECT F.*, A.GROUP_AREA_NM AS region, O.BUSI_CLASS_NAME AS projectType, C.NM AS projectMethod, D.NM AS constructionType, Z.NM_BUSI_AREA AS office, ROWNUM AS rn AND F.FACILITY_SEQ = #facilitySeq# AND ROWNUM CDATA 섹션을 추가한다.* CDATA 섹션안에 들어가는 태그.. Exception java.lang.ExceptionInInitializerError: Cannot access defaults field of Properties [in thread "Worker-38: Updating Maven Dependencies"] 화면도 잘뜨고 처음에 큰 문제가 되진않지만 거슬리는 에러Exception java.lang.ExceptionInInitializerError: Cannot access defaults field of Properties [in thread "Worker-38: Updating Maven Dependencies"] 프로젝트 오른쪽 - maven - update project force update of snapshots/release 선택 - ok project clean, 완료 https://standout.tistory.com/1607 Maven Cannot access defaults field of Properties에러Cannot access defaults field of Proper.. Maven Cannot access defaults field of Properties에러 Cannot access defaults field of Properties pom.xml에 plugin 추가, 완료org.apache.maven.pluginsmaven-war-plugin3.3.2 Controller에서 간단하게 DB 테스트 하기: jdbcTemplate.queryForObject 의존성 추가implementation 'org.springframework.boot:spring-boot-starter-data-jpa'implementation 'org.springframework.boot:spring-boot-starter-jdbc'implementation 'org.postgresql:postgresql:42.2.18' db연결정보 기입(~에 알맞게 입력)spring.datasource.url=jdbc:postgresql://localhost:5432/~spring.datasource.username=~spring.datasource.password=~ jdbc template으로 select 1 실행package com.standout.scard.main;import o.. Invalid value type for attribute 'factoryBeanObjectType': java.lang.String: Mybatis 버전을 수정하자 mybatis의 버전을 업그레이(3.0.3) 하여 해결.* springframwork 버전 id 'org.springframework.boot' version '3.4.0-SNAPSHOT' 기준. 네트워크 통신을 수행하는 URLConnection: addRequestProperty() connect() getAllowUserInteraction() getConnectTimeout() getContent() getContentEncoding() getContentLength() getContentType() getDate() getDefaultAllowUserInteraction() getDefaultRequestProperty() getDefau 앞서 URL클래스와 URLConnection클래스의 차이를 알아봤다.실제로 네트워크 통신을 수행하고 요청(Request)을 보내고 응답(Response)을 받아오는 역할을 하는 URLConnection의 메서드에 대해 알아보자.https://standout.tistory.com/1522 URL 클래스와 URLConnection 클래스의 차이URL 클래스와 URLConnection 클래스는 모두 네트워크 통신을 다루는 데 사용되지만, 목적과 기능이 다르다. URL 클래스URL 클래스는 자원의 위치를 식별하고 관리주로 URL 문자열에서 프로토콜, 호스트,standout.tistory.com void addRequestProperty(String key, String value) HTTP 요청 헤더에 지정된.. 자원의 위치를 식별하는 데 사용되는 클래스URL와 URL메서드: URL() getAuthority() getContent() getDefaultPort() getFile() getHost() getPath() getPort() getProtocol() getQuery() getRef() getUserInfo() openConnection() openStream() set() toExternalForm() toURL() URLUniform Resource Locator자원의 위치를 식별하는 데 사용되는 클래스웹상의 자원을 가리키는 문자열로부터 해당 자원의 프로토콜, 호스트, 포트, 경로 등을 추출하고 관리자바 표준 라이브러리(java.net 패키지)에 포함되어 있으며, 네트워크 프로그래밍 및 웹 개발에서 많이 활용된다. 주요기능을 살펴보자. 자원 위치 식별문자열 형태로 표현된 자원의 위치(웹 페이지, 이미지, 파일 등)를 식별구성 요소 추출주어진 문자열에서 프로토콜, 호스트, 포트, 경로, 쿼리 등의 구성 요소를 추출프로토콜 지원 다양한 프로토콜(HTTP, HTTPS, FTP 등)을 지원하여 해당 프로토콜을 사용하여 자원에 접근연결 및 통신URL 객체를 사용하여 원격 호스트에 연결하고 자원을 가져오는 등의 네트워크 통.. 이전 1 2 3 4 ··· 45 다음