SpringBootショッピングモール開発環境の構築
1423 ワード
Spring Bootプロジェクトの作成
MySQLの使用
MySQL Workbench 8.0 CE
「作成モード」ボタンを使用してShopモードを作成する
server.port=8080
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.datasource.username=아이디
spring.datasource.password=패스워드
spring.datasource.url=jdbc:mysql://localhost:3306/스키마명
# create, update, none, create-drop, validate,
spring.jpa.hibernate.ddl-auto=update
## Jpa Properties
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.format_sql=true
## Logging Level
logging.level.org.hibernate.type.descriptor.sql=debug
spring.security.user.name=root
spring.security.user.password=root
spring.security.user.roles=ADMIN
Reference
この問題について(SpringBootショッピングモール開発環境の構築), 我々は、より多くの情報をここで見つけました https://velog.io/@kyu9610/Spring-Boot-쇼핑몰-개발환경-구축テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol