We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d99fdbf commit 5adf635Copy full SHA for 5adf635
aws-serverless-java-container-spring/src/test/java/com/amazonaws/serverless/proxy/spring/echoapp/ProfileOverrideConfig.java
@@ -0,0 +1,14 @@
1
+package com.amazonaws.serverless.proxy.spring.echoapp;
2
+
3
+import org.springframework.context.annotation.Configuration;
4
+import org.springframework.context.annotation.Profile;
5
+import org.springframework.context.annotation.PropertySource;
6
7
+/**
8
+ * Created by matthewcorey on 2/20/17.
9
+ */
10
+@Configuration
11
+@Profile("override")
12
+@PropertySource("classpath:/application-override.properties")
13
+public class ProfileOverrideConfig {
14
+}
0 commit comments