Created
July 20, 2013 10:05
-
-
Save debop/6044529 to your computer and use it in GitHub Desktop.
mongodb 사용
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Spring framework --> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-core</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-context</artifactId> | |
| </dependency> | |
| <!-- Spring AOP --> | |
| <dependency> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-aop</artifactId> | |
| </dependency> | |
| <!-- Spring Data MongoDB --> | |
| <dependency> | |
| <groupId>org.springframework.data</groupId> | |
| <artifactId>spring-data-mongodb</artifactId> | |
| </dependency> | |
| <!-- QueryDSL for MongoDB --> | |
| <dependency> | |
| <groupId>com.mysema.querydsl</groupId> | |
| <artifactId>querydsl-mongodb</artifactId> | |
| </dependency> | |
| <!-- QueryDSL apt --> | |
| <dependency> | |
| <groupId>com.mysema.querydsl</groupId> | |
| <artifactId>querydsl-apt</artifactId> | |
| <scope>provided</scope> | |
| </dependency> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment