MARIADB 설치
2020. 3. 5. 09:50
MYSQL
참고 https://suwoni-codelab.com/linux/2017/05/24/Linux-CentOS-MariaDB/
[MYSQL] 덤프및 RESTORE
2020. 3. 5. 09:49
MYSQL
DUMP mysqldump -uroot -p 데이터베이스> 파일명.sql RESTORE mysql -u root -p 데이터베이스 < 파일명.sql
[MYSQL] MYSQL FUNCTION 생성시 오류
2020. 3. 5. 09:31
MYSQL
SET GLOBAL log_bin_trust_function_creators = 1; 쿼리 생성후 function create
[Spring] 엑셀 다운로드
2019. 11. 28. 13:48
스프링
controller /* 엑셀 다운로드 */ @GetMapping(value={ STATISTICS.STATISTICS_EXCEL_DOWNLOAD }) public void getStatisticsExcel(@ModelAttribute StatisticsInfo statisticsInfo, HttpServletRequest req, HttpServletResponse res, Principal principal) throws Exception { String mbrId = principal.getName(); if(mbrId == null) { mbrId = ""; } statisticsInfo.setMbrId(mbrId); /** 통계 리스트 조회 */ List list = statisticsServi..
[4] Spring boot Mybatis + Mysql + gradle 설정
2019. 9. 28. 17:55
스프링
1. application.properties 수정 spring.mvc.view.prefix=/WEB-INF/views/ spring.mvc.view.suffix=.jsp spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/calandar_db spring.datasource.username=root spring.datasource.password=1234 2. build.gradle 수정 plugins { id 'org.springframework.boot' version '2.1.8.RELEASE' id 'io.spring.dependency-management..
[3] Spring boot 롬복 설치
2019. 9. 28. 17:43
스프링
1. build.gradle 설정 plugins { id 'org.springframework.boot' version '2.1.8.RELEASE' id 'io.spring.dependency-management' version '1.0.8.RELEASE' id 'java' id 'war' } group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = '1.8' repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' providedRuntime 'org.springframework.boot:s..
[2] Spring Boot TilesConfig 설정
2019. 9. 28. 15:14
스프링
1. com.example.demo.config 패키지 생성 2. 해당 패키지안에 TilesConfig.java 클래스 파일 생성 import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.view.UrlBasedViewResolver; import org.springframework.web.servlet.view.tiles3.TilesConfigurer; import org.springframework.web.servlet.view.tiles3.TilesView; @Configuration p..