spring boot
-
Spring Boot Maven Multi Module 개발환경 설정하기Server/Spring Boots 2020. 11. 11. 19:17
spring.io/guides/gs/multi-module/ Creating a Multi Module Project this guide is designed to get you productive as quickly as possible and using the latest Spring project releases and techniques as recommended by the Spring team spring.io 멀티 모듈 프로젝트로 개발하게 되면 여러가지 장점이 있다. 공통의 모듈을 한 곳에서 관리함으로써 중복되는 소스 코드를 최소화하게 되며, 이에 따라 개발 할 때는 자신이 개발해야 하는 부분에 좀 더 촛점을 둘 수 있다. 장점에 대한 소개는 제쳐두고, 환경 세팅에 대해 고민해봤다. 1. m..
-
[삽질] vue.js + spring boot 통합 환경 -1-기타/vue.js 2020. 11. 11. 10:45
사실 vue.js와 spring boot 를 통합하는 글은 많이 있다. 그러나 대부분의 예제는 backend로 spring boot를, frontend로 node.js를 사용한다. npm run serve 우선 공식 홈페이지에서 안내하는 vue.js 사용법에 대해 한 번 살펴보자. vuejs.org/v2/guide/installation.html Installation — Vue.js Vue.js - The Progressive JavaScript Framework vuejs.org 크게 3가지 방법 (Direct Script include / NPM / Vue CLI)가 있다. 여기서 Direct Script Include를 살펴보자 node.js 서버를 올리는 방법 외에도 기존의 js 파일을 scri..
-
스프링 부트 + 레디스 설정/ 테스트Server/Redis 2020. 9. 29. 15:46
@EnableRedisHttpSession @Configuration @PropertySource("classpath:application.properties") public class RedisConfig { @Value("${spring.redis.host}") private String redisHostName; @Value("${spring.redis.port}") private int redisPort; @Bean public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() { return new PropertySourcesPlaceholderConfigurer(); } @Bean public R..