일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- android
- ScrollView
- viewmodel
- scroll
- tabbar
- activity
- textfield
- 앱바
- Compose
- data
- livedata
- 안드로이드
- Kotlin
- drift
- LifeCycle
- 계측
- intent
- appbar
- Navigation
- Button
- textview
- TEST
- binding
- Dialog
- DART
- CustomScrollView
- 테스트
- 앱
- Coroutines
- Flutter
- Today
- Total
목록Sping (2)
Study Record
✍ 정적 컨텐츠(파일을 그대로 웹 브라우저에 내려주는 방법) Spring Boot Features - Static Content 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 application context and is performed in the earliest docs.spring.io 파일을 그대로 웹 브라우저에 내려주는 방식이다. [예시] re..
✍ Welcome Page 서버를 실행하고 http://localhost:8080 으로 접속했을 때 기본적으로 보이는 페이지를 설정할 수 있다. resources/static 디렉터리에 index.html 파일을 만들면 이 페이지가 기본 페이지가 된다. ✍ GetMaping 이용하기 ① 먼저, 컨트롤러 자바 파일을 하나 생성한다. @Controller public class HelloController { @GetMapping("hello1") public String hello(Model model){ model.addAttribute("data", "Hello"); return "hello"; } } ② resources/templates 파일안에 hello.html 파일을 생성한다. 코드 해석을 해..