Skip to content
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

fix: replace javax with jakarta on imports #500

Merged
merged 1 commit into from
Sep 3, 2024

Conversation

donghoony
Copy link
Member

  • javax로 작성된 import가 dependency에 존재하지 않아서, jakarta 버전으로 import문을 수정합니다.

@kang-hyungu kang-hyungu merged commit 0b698a2 into woowacourse:main Sep 3, 2024
@donghoony donghoony deleted the fix branch September 3, 2024 06:04
HaiSeong pushed a commit to HaiSeong/java-http that referenced this pull request Sep 6, 2024
Minjoo522 pushed a commit that referenced this pull request Sep 6, 2024
* fix: replace javax with jakarta on imports (#500)

* fix: remove implementation logback-classic on gradle (#501)

* fix: add threads min-spare configuration on properties (#502)

* feat: javax jakarta로 변경

* feat: FileTest 파일 경로 및 읽기 작성

* feat: IOStreamTest OutputStream 테스트 구현

* feat: IOStreamTest InputStream 테스트 구현

* feat: IOStreamTest FilterStream 테스트 구현

* feat: IOStreamTest BufferedReader 테스트 구현

* chore: IOStreamTest BufferedOutputStream 참고 주석 작성

* chore: 안쓰는 import 제거

* feat: header parsing

* feat: query parsing

* feat: /login page

* feat: request, response base code

* refactor: http 클래스 분리

* refactor: http request 구현 적용

* refacor: HttpResponse

* refactor: handler 구현

* refactor: format code

* refactor: format code

* feat: redirect 구현

* refactor: before post body

* feat: post redirect get register, login

* feat: http cookie 구현

* feat: 세션 쿠키 등록 구현

* feat: 세션 쿠키가 존재할 경우 응답하지 않음

* feat: getSession 및 user handler 작성

* refactor: http cookies로 변경

* refactor: 404 리다이렉트

* refactor: static resource response

* refactor: string return

* test: handler test

* test: handler test

* refactor: http request factory

* fix: 캐시 미션 버그 수정

* feat: 0단계 - 휴리스틱 캐싱 제거하기

* feat: 1단계 - HTTP Compression 설정하기

* feat: 2단계 - ETag/If-None-Match 적용하기

* feat: 3단계 - 캐시 무효화(Cache Busting)

* refactor: doGet으로 메서드 변경

* refactor: handler 위치 변경

* refactor: CacheControl Builder 사용으로 개선

* chore: 사용하지 않는 import 제거

* feat: 로그인된 상태에서 /login 페이지에 GET method로 접근 시 index.html로 리다이렉트 처리

* refactor: join -> entry 에서 entry -> joining으로 개선

---------

Co-authored-by: Donghoon Lee <[email protected]>
Co-authored-by: Gyeongho Yang <[email protected]>
HoeSeong123 pushed a commit that referenced this pull request Sep 9, 2024
* feat: FileTest, IOStreamTest 학습

* fix: replace javax with jakarta on imports (#500)

* fix: remove implementation logback-classic on gradle (#501)

* fix: add threads min-spare configuration on properties (#502)

* feat: 학습테스트 2 완료

* feat: HttpMethod 구현

* feat: RequestLine 구현

* feat: HttpRequest 구현

* refactor: RequestLine split 스페이스 상수 사용

* package: HttpMethod package 변경

* refactor: HttpRequest I/O 리소스 커넥션 유지

* fear: HttpStatus 구현

* feat: HttpResponse 구현

* feat: HttpResponseDto 생성

* feat: OutputView 구현

* feat: GetMethodHandler 구현

* refactor: response의 header 순서가 변경되지 않도록 변경

* feat: Http11Processor static 페이지 get 요청 구현

* feat: ContentTypeResolver 구현

* refactor: GetMethodHandler contentType 관련 로직 개선

* refactor: InputView 로직 분리

* package: 패키지 구조 변경

* refactor: StaticResourceHandler 으로 이름 변경

* package: 패키지 구조 변경

* feat: queryParameter 파싱 구현

* feat: queryParameter 안맞는 형식 파싱

* test: RequestURITest 순서 보장 상관없게 변경

* feat: AbstractController 구현

* feat: RequestMapping 구현

* test: 필요없는 테스트 삭제

* feat: RequestMapping 연결

* package: 패키지 구조 변경

* refactor: Http11Processor에 StaticResourceHandler 주입

* refactor: AbstractController 에 StaticResourceHandler 주입

* feat: redirect 기능 구현

* fix: 대문자 오타 수정

* feat: RequestHeaders 구현

* feat: RequestMessage 구현

* refactor: OutputStreamWriter 사용

* refactor: 루트로 접근시 index.html로 리다이렉트

* feat: LoginService 구현

* feat: LoginController 구현

* feat: RegisterController GET 요청 구현

* feat: LoginService 을 UserService 으로 이름 변경

* feat: 회원가입 기능 구현

* feat: 쿠키 로직 구현

* feat: Session 구현

* fix: 회원가입 버그 수정

* test: 연습 테스트 try-with-resources 사용

* bug: 지워진 클래스 테스트 수정

* refactor: ArrayList -> List

* refactor: 필요없는 메서드 삭제

* refactor: QUERY_DELIMITER로 이름 변경

---------

Co-authored-by: Donghoon Lee <[email protected]>
Co-authored-by: Gyeongho Yang <[email protected]>
alstn113 added a commit to alstn113/java-http that referenced this pull request Sep 12, 2024
* fix: replace javax with jakarta on imports (woowacourse#500)

* fix: remove implementation logback-classic on gradle (woowacourse#501)

* fix: add threads min-spare configuration on properties (woowacourse#502)

* feat: javax jakarta로 변경

* feat: FileTest 파일 경로 및 읽기 작성

* feat: IOStreamTest OutputStream 테스트 구현

* feat: IOStreamTest InputStream 테스트 구현

* feat: IOStreamTest FilterStream 테스트 구현

* feat: IOStreamTest BufferedReader 테스트 구현

* chore: IOStreamTest BufferedOutputStream 참고 주석 작성

* chore: 안쓰는 import 제거

* feat: header parsing

* feat: query parsing

* feat: /login page

* feat: request, response base code

* refactor: http 클래스 분리

* refactor: http request 구현 적용

* refacor: HttpResponse

* refactor: handler 구현

* refactor: format code

* refactor: format code

* feat: redirect 구현

* refactor: before post body

* feat: post redirect get register, login

* feat: http cookie 구현

* feat: 세션 쿠키 등록 구현

* feat: 세션 쿠키가 존재할 경우 응답하지 않음

* feat: getSession 및 user handler 작성

* refactor: http cookies로 변경

* refactor: 404 리다이렉트

* refactor: static resource response

* refactor: string return

* test: handler test

* test: handler test

* refactor: http request factory

* fix: 캐시 미션 버그 수정

* feat: 0단계 - 휴리스틱 캐싱 제거하기

* feat: 1단계 - HTTP Compression 설정하기

* feat: 2단계 - ETag/If-None-Match 적용하기

* feat: 3단계 - 캐시 무효화(Cache Busting)

* refactor: doGet으로 메서드 변경

* refactor: handler 위치 변경

* refactor: CacheControl Builder 사용으로 개선

* chore: 사용하지 않는 import 제거

* feat: 로그인된 상태에서 /login 페이지에 GET method로 접근 시 index.html로 리다이렉트 처리

* refactor: join -> entry 에서 entry -> joining으로 개선

---------

Co-authored-by: Donghoon Lee <[email protected]>
Co-authored-by: Gyeongho Yang <[email protected]>
alstn113 pushed a commit to alstn113/java-http that referenced this pull request Sep 12, 2024
alstn113 added a commit that referenced this pull request Sep 13, 2024
* fix: replace javax with jakarta on imports (#500)

* refactor: 세션 클래스 이동

* refactor: step3 요구사항 형식에 맞게 수정

* refactor: front controller를 톰캣에 넘겨서 의존 방향 개선

* refactor: 객체지향적으로 개선

* test: 세션 테스트 추가

* test: 쿠키 테스트 추가

* test: request 테스트

* test: response 테스트

* refactor: Post NotFound 처리

* refactor: 쿠키 getOrDefault로 변경

---------

Co-authored-by: Donghoon Lee <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants