Programming
-
JSP 게시판 만들기 강좌 -6강Programming/JAVA 2022. 9. 13. 03:11
li class active 는 하나만 input name은 나중에 서버 프로그램 작성할 때 사용하기에 매우 중요함. 대소문자 구분하면서 넣기 ! JSP 게시판 만들기 강좌 3강 - 회원 데이터베이스 구축하기 jsp advanced development tutorial #3 1. Mysql community download - mysql installer download -> 설치 과정에서 root 비밀번호 잘 외워두기 2. 설치 후 Mysql Command LIne Client 접속 -> root 비밀번호 작성 >>CREATE DATABASE BBS; 생성 USE BBS; 데이터베이스 접속 CREATE TABLE USER ( userID VARCHAR(20), ( 문자 20개 들어갈 수 있는 공간 ) ..
-
JAVA 06-2 객체 간 협력Programming 2022. 8. 28. 00:57
학생 클래스 구현 package cooperation; public class Student { public String studentName; public int grade; public int money; public Student(String studentName, int money) { this.studentName = studentName; this.money = money; } public void takeBus(Bus bus){ bus.take(1000); this.money -= 1000; } public void takeSubway(Subway subway) { subway.take(1500); this.money -= 1500; } public void showInfo(){ System..
-
220813 React JS 로 영화 웹 서비스 만들기 (2)Programming/Web 2022. 8. 15. 23:36
#2.3 Events in React 2개의 컴포넌트를 가지는 컴포넌트 생성한 것 ( span, btn ) const container = React.createElement("div",null,[span,btn]); console.log("im clicked"), 처럼 statement로만 html을 만들고 content 넣고 eventListener #2.4 Recap #2.5 JSX Babel complies JSX down to React.createElement() calls const element = ( Hello World! ); JSX : 자바스크립트 확장한 문법 const h3 = React.createElement( "h3", { onmouseenter: () => console.lo..
-
220812 React JS 로 영화 웹 서비스 만들기 (1)Programming/Web 2022. 8. 13. 00:26
#2.1 Before React ' 버튼 몇번 클릭했는지 세는 어플, 바닐라 js 작은 앱 ' 만들기를 통한 react의 필요성 학습 Total clicks : 0 Click me 1.htmll 2. javascript 3. eventlistner 이벤트 감지 4. 데이터 업데이트 5. html 업데이트 https://unpkg.com/react@17.0.2/umd/react.production.min.js https://unpkg.com/react-dom@17.0.2/umd/react-dom.production.min.js : 위의 src로 react, react-dom을 js로 import 하면 리액트 설치 완료 ! 2.2 Our Fist React Element 이 강의에서 설명하는 react js..