목록2024/02 (9)
기초공사 (html,css,javascript)
// https://developing-move.tistory.com/30?category=884479 [HTML] Contents 구분(1) - header, footer, h1 ~ h6 ▶ 소개나 탐색을 돕는 그룹 일반적으로 사이트 가장 상단 부분에 bar가 있으면 header라고 지칭. 로고, 메뉴, 검색 바, 로그인/로그아웃, 회원가입 버튼 등으로 구성. 내에는 다른 나 가 자손으로 developing-move.tistory.com 사이트 https://velog.io/@oct14/HTML-section%EA%B3%BC-article%EC%9D%98-%EC%B0%A8%EC%9D%B4
아침메뉴 점심메뉴 저녁메뉴 아침메뉴w300 점심메뉴 저녁메뉴 위의코드에서 우선순위를 알아볼때 .header-menu-item { background-color: pink; } .header-menu-item.w-300 { background-color: yellowgreen; } .w-300 { width: 300px; background-color: blue; } 에서 제일 끝에 있는 .w-300 : blue 가 높아야 하는데. .header-menu-item.w-300 : yellowgreen 이 더 높다.
// 참고사이트 https://tailwindcss.com/ Tailwind CSS - Rapidly build modern websites without ever leaving your HTML. Tailwind CSS is a utility-first CSS framework for rapidly building modern websites without ever leaving your HTML. tailwindcss.com //
// // 1. list.jsp에 '파일명' 추가하기. 그래서 webhard.jsp에서 처럼 '업로드'를 클릭하면 목록에 그 파일명이 추가된거처럼 해보기 public String getString() { return fname; } board.dto에 위의처럼 입력을 하니 오류가 뜬다. javax.el.PropertyNotFoundException: [fname] 특성이 [com.companyboard.db.BoardDto] 유형에 없습니다 아래처럼 수정 public String getFname() { return fname; } public void setFname(String fname) { this.fname = fname; } 그이유는, Getter / Setter 메소드 확인 : java속성은 ..
//webhard.jsp 업로드할 파일을 선택하세요. 파일명 업로드 시간 크기 삭제 X // add_file.jsp 현재시간:
//지정된 파일 삭제 File file = new File(application.getRealPath("/files/") + rs.getString("fname")); if(file != null){ file.delete(); } //DB에서 파일 정보를 삭제 stmt.executeUpdate( "delete from webhard_t where num=" + num); } } catch(Exception e){ e.printStackTrace(); } response.sendRedirect("webhard.jsp"); 1.오류 "File cannot be resolved to a type" 보통 필요한 라이브러리가 import 되지 않아서 발생한다. java.io.File 클래스를 사용하고 있으니, i..
// 검색해보니 프로젝트 오른쪽 클릭 --> java build path에서 Libaray에서 cos.jar를 추가해줘야한다. 'cos.jar'를 프로젝트의 빌드 경로에 추가하는 방법은 IDE마다 조금씩 다릅니다. 여기에서는 Eclipse와 IntelliJ에서의 방법을 설명해 드리겠습니다. Eclipse에서의 추가 방법: 프로젝트를 오른쪽 클릭한 후, 'Properties'를 선택합니다. 왼쪽 메뉴에서 'Java Build Path'를 선택합니다. 'Libraries' 탭을 클릭 후, 'Add External JARs...' 버튼을 클릭합니다. 'cos.jar' 파일이 있는 위치를 찾아 선택하고 'Open' 버튼을 누릅니다. 'Apply and Close' 버튼을 눌러 설정을 저장합니다 업로드를 클릭하면..