일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- react
- 앱
- sdk
- 시큐리티
- DB
- 폰트
- springboot
- 안드로이드
- YAML
- Navigation
- sqlite
- 자바스크립트
- mysql
- thymeleaf
- 배포
- Java
- 이클립스
- EAS
- expo
- spring
- 로또
- string
- Native
- Admob
- 시놀로지
- sts
- yml
- 스프링
- sql
- Android
- Today
- Total
목록옛날 창고/스프링 (7)
Dev JS Blog
pom.xml에는 org.springframework.boot spring-boot-starter-data-jpa application.yml 에 jpa 를 설정을 추가해준다. jpa: show-sql: true hibernate: ddl-auto: create 추가로 naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl 이걸 추가하면 camelCase 로 컬럼명이 생성된다. 기본적으로 DB 컬럼명은 camel 방식으로 사용하지 않아서 저 설정을 추가하지 않는다면 userName 이였다면 user_name으로 컬럼명이 생성된다. 하지만 저 옵션이 추가되면 camel 형식대로 컬럼명이 생성된다..
vue를 사용하기 위해서 세팅하는 것은 정말로 간단합니다~! 그래도 혹시나 모를 분들을 위해서 저도 세팅 하는겸.. 글을 남겨봅니다. https://kr.vuejs.org/v2/guide/installation.html 설치방법 — Vue.js Vue.js - 프로그레시브 자바스크립트 프레임워크 kr.vuejs.org 여기가면 설치방법이 상세하게 적혀있지만.. 그래도 모르겠다란 분들을 위해서.. 일단 JS 파일을 다운받던가 CDN 을 복사합니다. 아 먼저 하기에 앞서 기본 이클립스에서는 Vue 가 지원이 안되므로 플러그인을 설치해주셔야합니다. help > eclipse Marketplace 로 갑니다. vue 를 검색해서 install 해주면 끝. {{message}} 저는 js 파일을 다운받아서 sta..
Spring boot Starter로 DB 를 연결 해보려한다. Stater..? 가 뭔지 모르는 사람은 참고 2021/02/01 - [IT/스프링] - eclipse STS 로 Spring Boot 프로젝트 시작하기 eclipse STS 로 Spring Boot 프로젝트 시작하기 https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise appli.. allmana.tistory.com 그럼 바로 DB 연결을 해보자! A..
2021/02/01 - [IT/스프링] - Spring boot starter 로 Thymeleaf 사용하기 Spring boot starter 로 Thymeleaf 사용하기 일단 난 처음에 이거 어케 읽어야할지도 난감했다..😅 읽는법은 타임리프로 읽으면 된다. 기존 자주 사용해왔던 JSP 는 Spring Boot에서는 권장하지 않고 Thymeleaf 사용을 권장한다. 이유는 JSP 보다는 allmana.tistory.com 2021/02/01 - [IT/스프링] - Spring boot application.properties 를 가독성있게 바꿔보자 Spring boot application.properties 를 가독성있게 바꿔보자 Spring Boot 에 application.properties 은..
Spring Boot 에 application.properties 은 다르게도 쓸수있다. https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#mapping-yaml-to-properties Spring Boot Features Graceful shutdown is supported with all four embedded web servers (Jetty, Reactor Netty, Tomcat, and Undertow) and with both reactive and Servlet-based web applications. It occurs as part of closing the applicat..
일단 난 처음에 이거 어케 읽어야할지도 난감했다..😅 읽는법은 타임리프로 읽으면 된다. 기존 자주 사용해왔던 JSP 는 Spring Boot에서는 권장하지 않고 Thymeleaf 사용을 권장한다. 이유는 JSP 보다는 Thymeleaf가 Spring boot 에 적합한가보다 깊은 내용은 나도 모른다. 나는 야매 개발자니까 자 Spring boot starter 는 정말 정말 편하다~ 혹시 .. Spring boot Stater 로 프로젝트를 안만들었다면.. 참고 2021/02/01 - [IT/스프링] - eclipse STS 로 Spring Boot 프로젝트 시작하기 eclipse STS 로 Spring Boot 프로젝트 시작하기 https://spring.io/tools Spring Tools 4 is..
https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE. spring.io STS 는 위에 사이트에서 eclipse 버전으로 다운받으면 됩니다. 예전 처음 Spring 배웠을때는 starter 가 있었는지 모르겠지만 요즘엔 Starter 가 있어서 기본 설정들이 쉬운거 같다. Starte..