728x90

md5 암호화 중 byte[]를 String 으로 만들기 위해 사용한 패키지

// https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api
implementation group: 'jakarta.xml.bind', name: 'jakarta.xml.bind-api', version: '4.0.2'

 

의존성 추가

 

DatatypeConverter.printHexBinary(byteArray);
728x90

'study > spring-boot' 카테고리의 다른 글

[Spring boot] mariadb + jpa 대문자로 만들기  (0) 2024.05.17
[spring boot] thymeleaf th:href / th:src  (0) 2022.12.26
[spring boot] thymeleaf layout  (0) 2022.12.26
@EnableTransactionManagement  (0) 2022.10.11
vscode refresh gradle  (0) 2022.10.11
728x90
spring:
    jpa:
        hibernate:
              naming:
                physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
728x90

'study > spring-boot' 카테고리의 다른 글

[SPRING BOOT] DatatypeConverter  (0) 2024.05.21
[spring boot] thymeleaf th:href / th:src  (0) 2022.12.26
[spring boot] thymeleaf layout  (0) 2022.12.26
@EnableTransactionManagement  (0) 2022.10.11
vscode refresh gradle  (0) 2022.10.11
728x90

th:href="@{/css/main.css}"

th:src="@{/js/app.js}"

728x90

'study > spring-boot' 카테고리의 다른 글

[SPRING BOOT] DatatypeConverter  (0) 2024.05.21
[Spring boot] mariadb + jpa 대문자로 만들기  (0) 2024.05.17
[spring boot] thymeleaf layout  (0) 2022.12.26
@EnableTransactionManagement  (0) 2022.10.11
vscode refresh gradle  (0) 2022.10.11
728x90

th:fragment = ""

th:block th:replace="dir/file::fragment_name" 

th:block layout:fragment="block name"

 

layout:decorate="~{layouts/default_layout}"
th:block layout:fragment="block_name"
728x90
728x90

gradle 

// https://mvnrepository.com/artifact/org.springframework/spring-tx
implementation group: 'org.springframework', name: 'spring-tx', version: '5.3.23'

 

728x90
728x90
./gradlew --refresh-dependencies
728x90
728x90

Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource

 

mybatis 추가후 bean dataSource설정이 없을경우

728x90

'study > spring-boot' 카테고리의 다른 글

[Spring boot] mariadb + jpa 대문자로 만들기  (0) 2024.05.17
[spring boot] thymeleaf th:href / th:src  (0) 2022.12.26
[spring boot] thymeleaf layout  (0) 2022.12.26
@EnableTransactionManagement  (0) 2022.10.11
vscode refresh gradle  (0) 2022.10.11

+ Recent posts