-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Environment bean needs to be created before refreshing the spring root
context as it needs to collect the ModuleBeans. No need for AccessLogLocationBean @component or @Autowired addAccessLog method in GrizzlyApplication class need to handle context where there are slashes in the context
- Loading branch information
Ke Wang
committed
Mar 19, 2015
1 parent
b1db025
commit 443e4ed
Showing
7 changed files
with
149 additions
and
162 deletions.
There are no files selected for viewing
This file contains 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
25 changes: 25 additions & 0 deletions
25
micro-core/src/main/java/com/aol/micro/server/module/ConfigureEnviroment.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package com.aol.micro.server.module; | ||
|
||
import java.util.Collection; | ||
import java.util.Properties; | ||
|
||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.beans.factory.annotation.Qualifier; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
@Configuration | ||
public class ConfigureEnviroment { | ||
|
||
@Autowired(required = false) | ||
private Collection<ModuleBean> modules; | ||
|
||
@Bean | ||
public Environment environment(@Qualifier("propertyFactory") Properties props) { | ||
if (modules == null) { | ||
return new Environment(props); | ||
} | ||
return new Environment(props, modules); | ||
} | ||
|
||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.