[springboot] port 변경
application.properties 파일에 아래와 같이 기입 server.port=8090
- Programming/Springboot-tip
- · 2016. 9. 6.
- 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..
- 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..
스프링부트를 이용하여 만든 프로젝트를 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..
application.properties 파일에 아래와 같이 기입 server.port=8090
작성일 : 2016-5-13(cpdev.tistory.com)- JHipster란? 말 그대로 Yeoman generator을 이용해서 spring boot + angularjs의 기본적인 기능을 갖춘 프로젝트를 생성하여 준다. 기본적인 인증처리라던가 restful api를 이용한 통신에 대한 내용들이 들어가 있으며, 거의 reference라고 봐도 무방할 정도의 소스를 제공한다. github : https://jhipster.github.io/ - Install JHipster를 설치하는 방법은 크게 3가지다 - local installation- vagrant-base "development box" - Docker 그중에 일반 유저에게 추천되는 설치 방법인 local installation 대해서 ..