vscode 스프링 처음시작 설정

김지원·2023년 7월 25일
0

스프링 프로젝트 생성
프로젝트 시작


자바꺼도 설치해야함
https://won2coding.tistory.com/5

https://won2coding.tistory.com/5
https://velog.io/@k7850/git


프로젝트만들때 여기서부터

위에 보기(view) - 명령팔레트

자바

input group ip : shop.mtcoding

input artifact id : 만들프로젝트폴더이름

jar

11


DevTools : 코드 변경 감지 시 애플리케이션을 자동으로 다시 시작


자바파일로 와서 shift F9로 실행


터미널말고 디버그콘솔에서 실행되게(안되면껐다켜기)
디버그콘솔은 검색해서 찾기 쉬움

application.yml

spring:
  profiles:
    active:
    - dev

application-dev.yml을 적용하게

application-dev.yml

server:
  servlet:
    encoding:
      charset: utf-8
      force: true
  port: 8080
spring:
  datasource:
    url: jdbc:h2:mem:test;MODE=MySQL
    driver-class-name: org.h2.Driver
    username: sa
    password:
  h2:
    console:
      enabled: true
  jpa:
    hibernate:
      ddl-auto: create
    show-sql: true
    properties:
      hibernate:
        format_sql: true
  output:
    ansi:
      enabled: always

application-prod.yml
실제배포할때 mysql쓰려면

server:
  servlet:
    encoding:
      charset: utf-8
      force: true
  port: 8080
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/blogdb
    driver-class-name: com.mysql.cj.jdbc.Driver
    username: root
    password: 101101
  jpa:
    hibernate:
      ddl-auto: create
    show-sql: true
    properties:
      hibernate:
        format_sql: true
  output:
    ansi:
      enabled: always

output:
ansi:
enabled: always
이부분이 디버그콘솔에 색깔 입혀줌

profile
https://github.com/k7850

0개의 댓글