본문 바로가기

Spring boot Web project/Web Technology5

[Git] STS ( 이클립스 ) 에서 깃허브 연동방법 오늘은 STS ( 이클립스 ) 에서 깃허브를 연동하는 방법, 그리고 연동한 repository에 간단하게 commit , push 하는 방법을 포스팅 하겠습니다. 1. Github 에 새로운 repository 를 생성합니다. 2. 이클립스 ( STS ) 우측 상단에 위치한 Git Perspective를 클릭하면 아래와 같은 화면이 나옵니다 ( 만약 Git 버튼이 보이지 않는다면 Window > Perspective > Open Perspective > Other > Git 를 추가하시면 됩니다 ) 3. 아까 만들어두었던 Repository의 url 주소를 복사합니다. 4. 왼쪽 상단에 위치한 Clone Git Repository 버튼을 선택하고 URL 칸에 방금 복사한 repository의 주소를 넣은.. 2020. 2. 24.
Apache Jmeter 설치 및 사용법 1. Apache Jmeter 설치 http://jmeter.apache.org/ Apache JMeter - Apache JMeter™ Apache JMeter™ The Apache JMeter™ application is open source software, a 100% pure Java application designed to load test functional behavior and measure performance. It was originally designed for testing Web Applications but has since expanded to other t jmeter.apache.org 위 사이트에 접속하여 사이트 왼쪽의 Download Releases 버튼을 클릭한 .. 2020. 2. 20.
[Thymeleaf] 하나부터 열까지 ( Part 1 ) + 참고 : Thymeleaf Document https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#standard-expression-syntax Tutorial: Using Thymeleaf 1 Introducing Thymeleaf 1.1 What is Thymeleaf? Thymeleaf is a modern server-side Java template engine for both web and standalone environments, capable of processing HTML, XML, JavaScript, CSS and even plain text. The main goal of Thymeleaf is to provide .. 2020. 2. 17.
[Java] Controller 작성법 - value : 접근가능한 이름 - method : RequestMethod.POST or RequestMethod.GET - ajax 이용시 Controller 함수 위에 mapping =>> Method 명칭 위에 mapping - data 넘겨받음 - value : Method 안에서의 data 변수 명칭 선언 - required : true 가 기본값 , 생략시 true 로 설정 -> 즉 required : false 일 때에만 설정 하면 OK false 인 경우에는 data 가 넘어올 수도 안넘어 올 수도 있음 + 형식 @RequestParam ( value = " kk ", required = fa.. 2020. 2. 14.
[Ajax] 작성법 및 형식 ajax 작성법 및 형식 $.ajax({ url : ' ', -> 자바 controller 에서 RequestMapping 하는 value 값 type : 'POST', async : true, -> 기본값 ( 비동기식 ) dataType : "Json", data : { "page_size" : page_size, "page_num" : page_num }, -> 데이터 여러개 전송 success : function(data){ -> 성공시 로직 }, error : function (e){ -> 실패시 로직 } }); 2020. 2. 14.