spring(44)
-
Spring Data mongoDB(1.0.0 RC1 이상) 에서 collection에 index 추가 하기
Spring Data mongoDB (1.0.0 RC1 이상) 에서 collection에 index 추가 하기 코바 2012. 12. 10. 13:31 Mongo DB에 인덱스를 추가하기 위해서는 직접 콘솔에서 명령을 쳐도 되지만 나중에 배포시 자동화를 위해 서버가 시작시 인덱스를 추가하기 위해 소스를 찾아보았다. 현재 Spring Data mongoDB를 사용하고 있었으므로 그 부분 문서를 찾아보니 http://static.springsource.org/spring-data/data-document/docs/current/reference/html/#d0e2730 mongoTemplate.ensureIndex(new Index().on("name",Order.ASCENDING), Person.class..
2021.03.24 -
환경변수 관리하기 - mvn, spring with profile
1. maven profile 활용 1 가. 설정 나. 활용 ㄱ. 로컬 $ mvn -Plocal install build-local.properties META-INF/config.xml ㄴ. 스테이징 $ mvn -Pstaging install build-staging.properties META-INF/config.xml ㄷ. 운영서버1 $ mvn -Pprod1 install build-prod1.properties META-INF/config.xml 다. maven profile 장단점 ㄱ. 장점 - 스프링 애플리케이션에서는 단순한 설정형태 유지 - 이클립스 및 인텔리J 등 IDE플러그인에서 프로파일 지원 (프로파일을 변경하면 자동으로 빌드 된다거나..) ㄴ. 단점 - 프로파일 단위로만 propert..
2021.03.24