Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- sendRedirect
- Servlet
- 한글깨짐
- 요구사항정의서
- 톰캣
- GET방식
- Dispatcher
- Break
- Request
- WAS
- 피그마
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194711
- POST방식
- 매핑 #
- 김영한
- webserver #WAS #ServerApp
- xml
- CONTINUE
- while문
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194709&category=questiondetail&tab=community&q=1314387
- Forwarding
- Spring MVC
- https://www.inflearn.com/course/lecture?courseslug=%ea%b9%80%ec%98%81%ed%95%9c%ec%9d%98-%ec%8b%a4%ec%a0%84-%ec%9e%90%eb%b0%94-%ea%b8%b0%eb%b3%b8%ed%8e%b8&unitid=194690
- 다형성 #부모타입 #자식타입
- JSON형식의 response
- 화면정의서
Archives
- Today
- Total
목록수업 (43)
Step it up now

실전연습 작업지시서 1. workspace_java 작업공간에 로컬 자바 프로젝트를 java_20231004 생성한다 2.cmder프로그램에서 java_20231004 폴더를 연다 3. git init 엔터 4. 깃 허브에서 웹레포를 생성한다 5. git remote add origin https://github.com/keunn7/java_20231004.git -->(깃레포 주소 뒤에 입력후 전체 복사해서 cmder에 입력 ) 6. 로컬 프로젝트에서 수정한 내용을 깃헙 웹레포지토리와 동기화 되도록 git push한다 7. 깃헙 사이트에서 새로고침을 하여 추가된 내용을 확인한다 :주의- 추가된 내용을 master브랜치에서 확인해야한다.
수업
2023. 10. 5. 01:53
230927 String
▶ s1==s2 String s1 = "안녕"; String s2 = "안녕"; System.out.println(s1==s2);//true s1과 s2는 "안녕"을 가리키고 있어 가리키는 것이 같으면 주소번지가 같다 결과값 true => 주소번지가 같은지 묻는것 ▶ s1.equals(s3) String s1 = "안녕"; String s3 = new String("안녕"); String s4 = new String("안녕"); System.out.println(s1.equals(s3));//true System.out.println(s1==s4);//false System.out.println(s1.equals(s4));//true s1과 s2가 가리키는 문자열이 같다는 것
수업/java
2023. 10. 1. 02:51