-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[5기 박유진] Shorten-URL 과제 제출합니다. #70
Open
eugene225
wants to merge
35
commits into
prgrms-be-devcourse:eugene
Choose a base branch
from
eugene225:main
base: eugene
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,128
−0
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
f21a7cc
init commit
eugene225 3b879ef
docs: h2 database, jpa, server 환경설정
eugene225 7836615
docs: h2 database, guava 의존성 추가
eugene225 9f89a4f
feat: Url 엔티티 구성 및 repository 생성
eugene225 4926d6a
feat: UrlService 기본 기능 구현 (인코딩 방식 추가 필요)
eugene225 1be563c
feat: UrlController 기본구현
eugene225 4ebb782
feat: shortenURL 화면 구성
eugene225 43a530d
Chore: 패키지 수정
eugene225 3e78f05
chore: 패키지 구조 변경
eugene225 74b0d62
refactor: 기본 service 구성
eugene225 38b98c0
refactor: 기본 rest api 구성
eugene225 3029ced
feat: web controller 구성
eugene225 f77ca25
refactor: 기본 api 주소 변경
eugene225 ff3d166
chore: 패키지 구조 변경
eugene225 10d658b
feat: GlobalExceptionHandler 구성 및 적용
eugene225 d11a9ea
feat: base62 인코딩 방식 추가
eugene225 80b6440
feat: 이진수, 16진수 converter 추가
eugene225 dcf2fb1
refactor: Base62 Encoding 클래스명 변경 (이넘명 중복)
eugene225 0702ff3
feat: encodingType 이넘 생성 및 함수형 인터페이스 적용
eugene225 585d81a
feat: string 값 이넘 변환 converter 생성
eugene225 5165c18
refactor: 인코딩 함수 로직 변경
eugene225 8eb7746
refactor: encodingType 파라미터 추가
eugene225 651e09e
feat: html encodingType 라디오 버튼 추가
eugene225 42f7595
feat: url 요청 수 count 필드 추가 및 서비스 코드 수정
eugene225 9315f8e
refactor: 진수 Converter 클래스명 수정
eugene225 c1642c9
refactor: HttpStatus 활용 수정
eugene225 59686bf
feat: UrlRequestDto 생성 및 적용
eugene225 34df475
feat: base62 encoding 길이 추가
eugene225 0fcdb18
feat: originUrl 유효성 검사 코드 추가
eugene225 d1f77c0
docs: servlet 설정 제거
eugene225 7e5f03d
feat: createdAt, updatedAt 컬럼 추가
eugene225 5dc7ac6
feat: ID 값 타입수정
eugene225 48df906
Create maven.yml
eugene225 f2808c5
refactor: 이미 존재하는 url 처리
eugene225 786e478
Merge branch 'main' of https://github.com/eugene225/springboot-url-sh…
eugene225 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
spring: | ||
datasource: | ||
driver-class-name: org.h2.Driver | ||
hikari: | ||
jdbc-url: jdbc:h2:mem:spring_test;NON_KEYWORDS=USER;MODE=MySQL; | ||
username: sa | ||
password: 1234 | ||
h2: | ||
console: | ||
enabled: true | ||
path: /h2-console | ||
jpa: | ||
generate-ddl: false | ||
database: h2 | ||
show-sql: true | ||
open-in-view: false | ||
properties: | ||
hibernate: | ||
dialect: org.hibernate.dialect.H2Dialect | ||
query.in_clause_parameter_padding: true | ||
hbm2ddl: | ||
auto: create | ||
format_sql: true | ||
server: | ||
port: 8090 | ||
servlet: | ||
encoding: | ||
charset: UTF-8 | ||
enabled: true | ||
force: true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 왜 적용하신건가요? |
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NON_KEYWORDS가 왜 필요한건가요?