일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboot
- expo
- yml
- 시큐리티
- 로또
- Admob
- Navigation
- sdk
- 이클립스
- 시놀로지
- 배포
- 안드로이드
- sqlite
- 스프링
- 폰트
- Android
- Native
- 앱
- spring
- mysql
- Java
- 자바스크립트
- react
- EAS
- DB
- YAML
- sql
- sts
- thymeleaf
- string
- Today
- Total
목록spring (9)
Dev JS Blog
의존성 추가 implementation("org.springframework.boot:spring-boot-starter-security:3.0.3") 스프링 시큐리티를 의존성을 추가하고 서버를 재기동하고 localhost:8080 를 열어보면 내가 만든적 없는 로그인 창이 등장하게 된다. 보통 회원 관리가 필요한 사이트를 만들게 된다면 원래는 로그인 화면 부터 시작해서 로직까지 다 구현해야겠지만 스프링은 이러한 웹에 기본적인 기능들을 바로 구현시켜줌으로서 개발자들의 편의성을 제공해준다. 개발자는 차려진 밥상에 숟가락만 얹으면 된다. 사실 숟가락만 얹기란 쉽지 않긴하지만 그래도 어느정도 스프링이 밥은 차려준 셈이다. 누군가 웹 만들때 스프링을 왜 쓰는가? 묻는다면 개인적으로 이런저런 이론적인걸 떠나서 웹..
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..