ASPNET/ASPNET 7(18)
-
Rest API Template 만들기 - EP 06 (Authentication, Authorization with jwt)
이제 만들어 놓은 JWT 를 이용하여 기본적인 token validation 처리를 통해 Authentication 과 Authorization 을 처리 해보자. 다음 과정을 통해 순서대로 처리할 것이다. 1. AddAuthentication 과 AddJwtBearer 를 통해 Jwt 를 기본으로 하는 인증 서비스를 추가 2. AddAuthoirzation 을 추가하여 권한부여 서비스 추가 3. Cross Domain 문제 처리를 위한 CORS 처리 4. Test 를 위해 Swagger 에 인증관련 Test 를 할 수 있도록 설정 추가 cross domain 문제에 의해 client 에서 호출시 CORS 문제가 생길 경우를 대비하여 CORS 를 처리 하자 (여기서는 모든 client 를 access 가능..
2023.01.05 -
Rest API Template 만들기 - EP 05(AccessToken, RefreshToken with JWT)
기존에 TokenGenerator 를 통해서 Create 시에 Guid 를 이용해 token 을 생성했다. 이 token 을 이용하는 것도 단순히 사용하기에는 좋은 방법이다. 하지만 우리는 user 정보등을 token 에 포함하여 사용하고 싶을 수 도 있다. JWT (Json Web Token) 가 이러한 문제를 해결해 준다. 그래서 이제 여기서는 TokenGenerator 를 통해 JWT 를 발행 하는 방법을 알아볼것이다. Shared/Interfaces/ITokenGenerator.cs using ApiServer.Shared.Injectables; namespace ApiServer.Shared.Interfaces; public interface ITokenGenerator : ISingleton ..
2023.01.02 -
Rest API Template 만들기 - EP 04 (Logger Customize, Trace)
이제 지금까지 만든 Template 에서 Logging 을 해보자 이전에 Serilog 를 통해 file 에 Log 를 쓸수 있도록 했다. 이제 특정 format 은 만들어서 Logging 에 특정 패턴을 적용해보자 serilog 자체의 pattern 이 있긴 하지만 호출한 함수 이름을 제대로 파악하지 못하는 문제들이 있다. 그래서 ILogger 를 composit 하고 있는 IApiLogger 를 이용하여 Log 를 남겨 볼것이다. Share/Interfaces/IApiLogger.cs using ApiServer.Shared.Injectables; using System.Runtime.CompilerServices; namespace ApiServer.Shared.Interfaces; public i..
2022.12.29 -
Rest API Template 만들기 - EP 03 (Dependency Injection, Scrutor)
ASPNET Core 는 기본적으로 Dependency Injection 을 이용하여 의존성을 분리 하고 있다. https://yogingang.tistory.com/2 Dotnet 6 Dependency Injection 종속성 클래스와 해당 종속성 간의 Ioc (Inversion of Control)를 실현하는 기술로 DI (Dependency Injection) 라는 디자인 패턴을 지원한다. 종류 (서비스 수명) Transient : 요청할 때마다 만들어 짐, 요청이 끝날 yogingang.tistory.com https://learn.microsoft.com/ko-kr/aspnet/core/fundamentals/dependency-injection?view=aspnetcore-7.0 ASP.NE..
2022.12.26 -
Rest API Template 만들기 - EP 02 (Vertical Slice, MediatR)
Vertical Slice Architecture UI, Application, Domain, DB 등의 각각을 Layer 로 분리 하여 따로 관리 하지 않고 기능별(user story or feature) 로 모아서 응집도를 높이는 Architecture 참고 : https://jimmybogard.com/vertical-slice-architecture/ 일단 Controllers 폴더와 WeatherForecastController.cs 를 삭제하자 WeatherForecast.cs 파일도 삭제하자 자 위와 같은 Architecture 를 구현해보자 Features 폴더생성 User 폴더 생성 UserController.cs 생성 초기에 Vertical Slice 를 구현 하기 전에 UserCont..
2022.12.22 -
Rest API Template 만들기 - EP 01 (Create , Swagger, Logging)
Create visual studio 2022 를 실행하고 Create a new project 를 선택한다. asp.net core web api 선택 Project name 정하기 Additional Information 설정 Create 하면 Project 가 생성된다. F5 를 누르면 실행 된다. 위와 같이 swagger 를 통해 test 를 할 수 있는 화면이 나오면 성공한 것이다. 이제 이곳에 Logging 을 처리해 보자 아래파일로 이동하자 Controllers/WeatherForecastController.cs Get 함수를 다음과 같이 수정해 보자 [HttpGet(Name = "GetWeatherForecast")] public IEnumerable Get() { _logger.LogIn..
2022.12.19