본문 바로가기

Spring12

Common Application Properties https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html#application-properties.core Common Application Properties docs.spring.io Spring Boot 에서 사용하는 디폴트 프로퍼티 값을 정리 해 두었다. # 1. Core Properties ## Enable debug logs. / default : FALSE # debug=FALSE ## Arbitrary properties to add to the info endpoint. / default : # info.*= ## Charset to use for console output. / de.. 2022. 1. 2.
스프링 트랜잭션 관련 참조자료 https://kouzie.github.io/spring/Spring-%EC%8A%A4%ED%94%84%EB%A7%81-%ED%8A%B8%EB%9E%9C%EC%9E%AD%EC%85%98/#phantom-read Spring - 스프링 트랜잭션! 스프링 트랜잭션 kouzie.github.io 2021. 6. 9.
Spring Security (1) - 기본 설정 보안과 관련하여 뭔가 작업을 한다는 것은 많은 전문성을 요하는 것이다. 스프링에서는 아주 간단하게 여러가지 보안 문제에 대한 해결책을 제공하는데 이 것이 스프링 시큐리티이다. 설명에 대해서는 참조자료를 통해 읽어보면 되고, 실습에 대해서만 작성한다. /spring/pom.xml 5.3.4.RELEASE org.springframework spring-framework-bom ${org.springframework-version} pom import org.springframework.security spring-security-bom ${spring-security-version} pom import org.springframework.security spring-security-web org.sprin.. 2021. 5. 19.
Spring Framework (9) - Bootstrap 설정 및 로그인, 회원가입 화면 구현 일단 여기서 부터는 스프링 시큐리티 설정을 먼저 하고 나서 작업이 되어야 한다. 여기의 작업이 선행된 다음 진행하도록 하자. 일단 부트스트랩 설정을 하기 위해서는 이 홈페이지에서 관련 내용에 대해서 일단 알아보자. 부트스트랩은 동적인 웹 사이트 및 웹 응용 개발을 위한 프론트엔드 프레임워크라고 하는데, 간단하게 말하면 화면을 예쁘게 만들기 위해 많은 시간을 소모하지 않고 표준적이고 깔끔한 화면을 만들어주는 것이라고 보면 될 것 같다. 홈페이지에서 Compiled CSS and JS 파일을 다운로드 받고 /spring/src/main/webapp/resources/bootstrap/4.5.2 경로에 파일을 넣어준다. 버전에 따라 관리가 용이하게 하기 위해 경로를 이런식으로 만드는 것이 좋을 것 같다. 개인.. 2021. 5. 19.