하루하나
close
프로필 배경
프로필 로고

하루하나

  • ALL (217)
    • 쿠베플로우 kubeflow (1)
    • React Native (1)
      • Expo (1)
    • Programming (187)
      • spring+jwt+react (4)
      • wordpress (3)
      • Vultr (1)
      • Flutter (3)
      • Vue-project (1)
      • Vue-tip (17)
      • AngularJS (12)
      • Bootstrap (2)
      • Book (1)
      • CentOS (5)
      • Code (0)
      • Css (13)
      • Docker (7)
      • Eclipse (1)
      • Freemarker (1)
      • Git (9)
      • Front-End (6)
      • Error (7)
      • Gulp.js (0)
      • Java (12)
      • Python (5)
      • Javascript (19)
      • JPA (5)
      • jQuery (2)
      • Mac (6)
      • MySql (4)
      • Springboot (21)
      • Springboot-blog (0)
      • Daily (1)
      • Springboot-tip (3)
      • Spring (1)
      • Thymeleaf (1)
      • Tomcat (1)
      • Typescript (3)
      • Tool (5)
      • Sql (1)
      • prisma (1)
      • react (1)
    • Life (14)
      • Review (0)
      • Tip (3)
      • 리뷰 (8)
      • 부동산 (2)
  • 홈
  • 태그
  • 미디어로그
  • 위치로그
  • 방명록
[springboot] bower/gulp를 이용한 라이브러리 관리

[springboot] bower/gulp를 이용한 라이브러리 관리

- Goalspringboot 프로젝트에 bower,gulp를 이용한 frontend library 관리 - Time15min - Enviromentjava 1.8, STS3.7 - Tutorial 아래 포스팅에 이어서 작성합니다. 2016/11/14 - [Springboot] - [springboot] sts로 springboot + gradle + thymeleaf 프로젝트 만들기 .bowerrc 파일 작성1234{ "directory":"src/main/resources/static/bower_components", "json":"bower.json"}Colored by Color Scriptercs 콘솔창에서 bower init 으로 bower.json 파일 생성 하고 jquery를 예제로 설치1..

  • format_list_bulleted Programming/Springboot
  • · 2016. 11. 15.
  • textsms
[springboot] sts로 springboot + gradle + thymeleaf 프로젝트 만들기

[springboot] sts로 springboot + gradle + thymeleaf 프로젝트 만들기

- Goalsts로 springboot + gradle + thymeleaf 프로젝트 만들기 - Time10min - Enviromentjava 1.8, STS3.7, springboot 1.4.2 - TutorialSTS에서 File > New > Spring Starter Project 선택 필요한 내용 기입. Gradle로 작업할 것이기에 Type은 Gradle 선택 필요한 Dependencies를 선택해 준다. 기본적으로 우선 Thymeleaf만 선택해도 된다. Finish.. 기본적으로 생성해주는 프로젝트 구조.. 파일 2개를 추가해준다. WebController.java123456789101112131415package com.web; import org.springframework.stere..

  • format_list_bulleted Programming/Springboot
  • · 2016. 11. 14.
  • textsms
[springboot] 모바일,웹,테블릿 페이지 분리하기

[springboot] 모바일,웹,테블릿 페이지 분리하기

- Goalspringboot을 이용하여 agent에 따른 웹,모바일,테블릿 페이지 분리 표시하기 - Time10min - Enviromentjava 1.8, STS3.7 - Tutorial1. build.gradle에 dependency 추가compile("org.springframework.boot:spring-boot-starter-mobile") 2. application.properties에 아래 내용 추가spring.mobile.devicedelegatingviewresolver.enabled:true 3. view폴더에 mobile,table 폴더 생성 4. controller 생성1234@RequestMapping("/jsp")public String main(Model model){ re..

  • format_list_bulleted Programming/Springboot
  • · 2016. 10. 26.
  • textsms
[springboot] mybatis 연동

[springboot] mybatis 연동

- Goalspring boot+ gradle + mybatis 연동 - Time20min - Enviroment springboot1.4 , java 1.8, gradle, - Tutorialbuild.gradle에 라이브러리 추가1compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.1.1")cs mapper interface 추가12345@Mapperpublic interface HistroyMapper { @Select("SELECT * FROM HISTORY WHERE SEQ= ${seq}") List selectHistory(String seq);}Colored by Color Scriptercs controller에서 사용123456..

  • format_list_bulleted Programming/Springboot
  • · 2016. 9. 29.
  • textsms

[springboot] gradle war deploy 배포

스프링부트를 이용하여 만든 프로젝트를 war로 묶어서 외부 tomcat에 돌리고 싶을때.. - build.gradle 파일에 아래 내용 추가 123456789101112apply plugin: 'war'war { baseName = 'market2' } .. dependencies {..providedRuntime('org.springframework.boot:spring-boot-starter-tomcat')..}Colored by Color Scriptercs - java class 생성 혹은 기존 class에 추가 SpringBootServletInitializer 상속, SpringApplicationBuilder @override.. 1234567891011@SpringBootApplicatio..

  • format_list_bulleted Programming/Springboot
  • · 2016. 9. 23.
  • textsms
[SpringBoot] JPA를 이용한 CRUD#2 (MySql, Jsp)

[SpringBoot] JPA를 이용한 CRUD#2 (MySql, Jsp)

작성일자:2016-05-17- GoalSpring-boot 웹프로젝트에서 JPA를 이용한 CRUD 처리.DB는 MySql을 사용하고, View는 Jsp를 이용해서 작성한다. - Time15min - Enviromentjava 1.8, STS3.7 - Tutorial2016/05/16 - [Springboot] - [SpringBoot] JPA를 이용한 CRUD이전글을 확인하자. 소스는 아래 GitHub에서 받을수 있다. https://github.com/beans9/web/tree/jpa-crud 자 기존에는 파일db에 작성하던 내용을 MySql Db에 작성해보도록 하자. 전 글에서 JPA의 장점을 표준이라고 정의했다. DB가 바뀌더라도 설정외에는 실제 구현 코드는 바꿀 필요가 없다. 우린 interfa..

  • format_list_bulleted Programming/Springboot
  • · 2016. 5. 17.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • navigate_next
반응형
공지사항
전체 카테고리
  • ALL (217)
    • 쿠베플로우 kubeflow (1)
    • React Native (1)
      • Expo (1)
    • Programming (187)
      • spring+jwt+react (4)
      • wordpress (3)
      • Vultr (1)
      • Flutter (3)
      • Vue-project (1)
      • Vue-tip (17)
      • AngularJS (12)
      • Bootstrap (2)
      • Book (1)
      • CentOS (5)
      • Code (0)
      • Css (13)
      • Docker (7)
      • Eclipse (1)
      • Freemarker (1)
      • Git (9)
      • Front-End (6)
      • Error (7)
      • Gulp.js (0)
      • Java (12)
      • Python (5)
      • Javascript (19)
      • JPA (5)
      • jQuery (2)
      • Mac (6)
      • MySql (4)
      • Springboot (21)
      • Springboot-blog (0)
      • Daily (1)
      • Springboot-tip (3)
      • Spring (1)
      • Thymeleaf (1)
      • Tomcat (1)
      • Typescript (3)
      • Tool (5)
      • Sql (1)
      • prisma (1)
      • react (1)
    • Life (14)
      • Review (0)
      • Tip (3)
      • 리뷰 (8)
      • 부동산 (2)
최근 글
인기 글
최근 댓글
태그
  • #springboot
  • #GIT
  • #Vue
  • #AngularJS
  • #sts
  • #javascript
  • #JPA
  • #error
  • #MySQL
  • #css
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바