ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • spring boot JPA
    spring boot 2023. 5. 9. 10:35

     

     

     

     

     

     

     

     

     

     

     

    dependencies {
    	// 의존성 추가 설정 start
    	
    	// jasper
    	implementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-jasper'
    	// jstl
    	implementation 'javax.servlet:jstl'
    	implementation 'org.springframework.security:spring-security-taglibs:5.6.2'
    	// https://mvnrepository.com/artifact/org.springframework.security/spring-security-taglibs
    	
    	// 의존성 추가 설정 end
    	// implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    	// runtimeOnly 'com.mysql:mysql-connector-j'
    	implementation 'org.springframework.boot:spring-boot-starter-security'
    	implementation 'org.springframework.boot:spring-boot-starter-validation'
    	implementation 'org.springframework.boot:spring-boot-starter-web'
    	compileOnly 'org.projectlombok:lombok'
    	developmentOnly 'org.springframework.boot:spring-boot-devtools'
    	annotationProcessor 'org.projectlombok:lombok'
    	testImplementation 'org.springframework.boot:spring-boot-starter-test'
    	testImplementation 'org.springframework.security:spring-security-test'
    }

     

     

    ```sql
    # Created by https://www.toptal.com/developers/gitignore/api/macos,windows,java,eclipse
    # Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,java,eclipse
    
    ### Eclipse ###
    .metadata
    bin/
    tmp/
    *.tmp
    *.bak
    *.swp
    *~.nib
    local.properties
    .settings/
    .loadpath
    .recommenders
    
    # External tool builders
    .externalToolBuilders/
    
    # Locally stored "Eclipse launch configurations"
    *.launch
    
    # PyDev specific (Python IDE for Eclipse)
    *.pydevproject
    
    # CDT-specific (C/C++ Development Tooling)
    .cproject
    
    # CDT- autotools
    .autotools
    
    # Java annotation processor (APT)
    .factorypath
    
    # PDT-specific (PHP Development Tools)
    .buildpath
    
    # sbteclipse plugin
    .target
    
    # Tern plugin
    .tern-project
    
    # TeXlipse plugin
    .texlipse
    
    # STS (Spring Tool Suite)
    .springBeans
    
    # Code Recommenders
    .recommenders/
    
    # Annotation Processing
    .apt_generated/
    .apt_generated_test/
    
    # Scala IDE specific (Scala & Java development for Eclipse)
    .cache-main
    .scala_dependencies
    .worksheet
    
    # Uncomment this line if you wish to ignore the project description file.
    # Typically, this file would be tracked if it contains build/dependency configurations:
    #.project
    
    ### Eclipse Patch ###
    # Spring Boot Tooling
    .sts4-cache/
    
    ### Java ###
    # Compiled class file
    *.class
    
    # Log file
    *.log
    
    # BlueJ files
    *.ctxt
    
    # Mobile Tools for Java (J2ME)
    .mtj.tmp/
    
    # Package Files #
    *.jar
    *.war
    *.nar
    *.ear
    *.zip
    *.tar.gz
    *.rar
    
    # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
    hs_err_pid*
    replay_pid*
    
    ### macOS ###
    # General
    .DS_Store
    .AppleDouble
    .LSOverride
    
    # Icon must end with two \r
    Icon
    
    # Thumbnails
    ._*
    
    # Files that might appear in the root of a volume
    .DocumentRevisions-V100
    .fseventsd
    .Spotlight-V100
    .TemporaryItems
    .Trashes
    .VolumeIcon.icns
    .com.apple.timemachine.donotpresent
    
    # Directories potentially created on remote AFP share
    .AppleDB
    .AppleDesktop
    Network Trash Folder
    Temporary Items
    .apdisk
    
    ### macOS Patch ###
    # iCloud generated files
    *.icloud
    
    ### Windows ###
    # Windows thumbnail cache files
    Thumbs.db
    Thumbs.db:encryptable
    ehthumbs.db
    ehthumbs_vista.db
    
    # Dump file
    *.stackdump
    
    # Folder config file
    [Dd]esktop.ini
    
    # Recycle Bin used on file shares
    $RECYCLE.BIN/
    
    # Windows Installer files
    *.cab
    *.msi
    *.msix
    *.msm
    *.msp
    
    # Windows shortcuts
    *.lnk
    
    # End of https://www.toptal.com/developers/gitignore/api/macos,windows,java,eclipse
    ```

     

     

    'spring boot' 카테고리의 다른 글

    테이블 생성 및 JPA 테스트  (0) 2023.05.09
    JPA 설정  (0) 2023.05.09
    bank app 19 - (마이그레이션)  (0) 2023.04.21
    bank app 18 - (intercepter 활용)  (0) 2023.04.21
    bank app 17 - 계좌 상세보기(2)  (0) 2023.04.20
Designed by Tistory.