This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/util/pattern/PathPattern.html | |
๐PathPattern ๊ณต์๋ฌธ์ | |
? ํ ๋ฌธ์ ์ผ์น | |
* ๊ฒฝ๋ก(/) ์์์ 0๊ฐ ์ด์์ ๋ฌธ์ ์ผ์น | |
** ๊ฒฝ๋ก ๋๊น์ง 0๊ฐ ์ด์์ ๊ฒฝ๋ก(/) ์ผ์น | |
{spring} ๊ฒฝ๋ก(/)์ ์ผ์นํ๊ณ spring์ด๋ผ๋ ๋ณ์๋ก ์บก์ฒ | |
{spring:[a-z]+} matches the regexp [a-z]+ as a path variable named "spring" | |
{spring:[a-z]+} regexp [a-z]+ ์ ์ผ์นํ๊ณ , "spring" ๊ฒฝ๋ก ๋ณ์๋ก ์บก์ฒ | |
{*spring} ๊ฒฝ๋ก๊ฐ ๋๋ ๋ ๊น์ง 0๊ฐ ์ด์์ ๊ฒฝ๋ก(/)์ ์ผ์นํ๊ณ spring์ด๋ผ๋ ๋ณ์๋ก ์บก์ฒ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function printArr(array) { | |
//***1. arr ์ ์ถ๋ ฅํ๋ค.(๋จ, ์ค๋ณต๋๋ ๊ฐ์ ๊ฒฝ์ฐ ํ๋๋ง ํ์ถํ๋ค.)*** | |
const uniqueArr = [...new Set(array)]; | |
console.log(`1. unique array : ${uniqueArr}`); | |
//***2. arr ์ ์ถ๋ ฅํ๋๋ฐ n ์ด '์ง์' ์ด๋ฉด n์ ์ ๊ณฑํ ๊ฐ์ผ๋ก, 'ํ์' ์ด๋ฉด 1000์ ๋ํ ๊ฐ์ผ๋ก ์ถ๋ ฅํ๋ผ.*** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_rating_bar/flutter_rating_bar.dart'; | |
import 'package:http/http.dart' as http; | |
import 'package:url_launcher/url_launcher_string.dart'; | |
void main() { | |
runApp(const MovieFlix()); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const PomoTimer()); | |
} | |
class PomoTimer extends StatelessWidget { | |
const PomoTimer({super.key}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const UiClone()); | |
} | |
class UiClone extends StatelessWidget { | |
const UiClone({super.key}); | |
@override |