Skip to content

jc3wrld999/spring-boot-msa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🌱 Spring Boot Project

🚀

├─bin
│  ├─main
│  │  ├─com
│  │  │  └─springbootrestapi
│  │  └─templates
│  └─test
│      └─com
│          └─springbootrestapi
├─gradle
│  └─wrapper
└─src
    ├─main
    │  ├─java
    │  │  └─com
    │  │      └─springbootrestapi
    │  └─resources
    │      ├─static
    │      └─templates
    └─test
        └─java
            └─com
                └─springbootrestapi

/static/index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    Hello World!
</body>
</html>

gradle / maven

gradle 설치

./gradlew

gradle 빌드

./gradlew build

gradle jar 파일로 빌드

./gradlew bootjar

실행

./gradlew run

mvn 설치

mvn run

mvn spring-boot:run

application.yml

spring:
  thymeleaf:
    cache: "false"
  freemarker:
    cache: "false"
  mvc:
    static-path-pattern: /static/**
  devtools:
    livereload:
      enabled: "true"
  config:
    import: classpath:/config.yaml
logging:
  level:
    org:
      springframework:
        nodeValue: INFO
        web: DEBUG

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published