전체 글

전체 글

    The day of tired: but magic is back-end

    I have been wake up at 7am. It's not common, but I need to make a my cycle of life on get up early. Today, It's first day of starting Front-end classes. It's like a normal classes for me. Not bad, but I don't like to much as Back-end classes. I love to Back-end!! The Back-end provide me a magic which is show up from any side. When I look at the code which is written by anyone or me, whoever writ..

    [Spring][1] MVC pattern [MVC 패턴]

    목차 - MVC1 Pattern - MVC2 Pattern MVC1 Pattern 톰켓 서버 안에 불러온 resources들이 들어 있습니다. 톰켓 안에 a.jsp, b.jsp, c.jsp,... 들의 resources들이 들어있는데 이것들을 불러오기 위해서 db에서 요청을 하면 자바 코드로 연결을 해줘야 합니다. 클라이언트는 URL로 요청을 하고 Response를 원합니다. 아파치(server) 톰켓(was -> web application server)은 데이터 공유가 목적인 Server입니다. 그래서 이 아파치가 Client에게 필요한 값을 찾아서 주게 됩니다. 톰켓은 자바 관련된 요청이 있을 때만 일을 하는데, 자바 관련된 것이 없으면 톰켓이 일을 하지 않습니다. 클라이언트가 jsp를 원하면 아파..

    Life is programming

    Today, I have spent my time for 10 hours for studying programming. The teacher is quite well teaching!! So,, I'm so excited. I have spent time in academy at least 4 hours, And I was out, I came home from academy, I have studied untill now. I'm just finished my bloging for today's lecture. Tomorrow, I have a appointment for business, but I think so.. I want to well for this meeting. I mean the di..

    The foundation for entering Spring [ 스프링 입문의 기초 지식 ][2]

    목차 - 스프링 프로젝트 생성 - content-type에 관하여 - postman을 사용하여 get, post, put, delete 등 Request Method 사용 New Spring Starter Project 아래와 같이 Spring 프로젝트를 생성합니다 Package 이름은 도메인을 거꾸로 생각해서 작성합니다. Dependencies로 Spring Boot DevTools와 Spring Web을 추가합니다 첫 프로젝트는 생성하는데 오래 걸리는데 이 상태에서 잘못 건드리면 필요한 라이브러리를 다 받아 올 수 없거나 오류가 생길 수도 있습니다. 천천히 기다려주세요. 프로젝트 안에 pom.xml이라는 파일이 있습니다. 이 파일에 우리가 추가한 dependencies 목록을 볼 수 있는데요 프로젝트..