We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
创建容器时,可以将容器的 namespace 指定为空字符串,并且成功注册到全局配置对象中。但是在实际使用时,通过 @Assemble(container = "") 的方式却无法正确引用。
@Assemble(container = "")
由于当配置装配操作时,namespace 为空会认为需要进行内省,因此正常情况下应当不允许用户注册 namespace 为空的容器,因为这没有意义。
The text was updated successfully, but these errors were encountered:
fix(Container): designating the namespace as an empty string is not a…
dae8e5e
…llowed when creating a Container (GitHub #262)
a4a2221
Createsequence
No branches or pull requests
创建容器时,可以将容器的 namespace 指定为空字符串,并且成功注册到全局配置对象中。但是在实际使用时,通过
@Assemble(container = "")
的方式却无法正确引用。由于当配置装配操作时,namespace 为空会认为需要进行内省,因此正常情况下应当不允许用户注册 namespace 为空的容器,因为这没有意义。
The text was updated successfully, but these errors were encountered: