This is an automated email from the ASF dual-hosted git repository. liubao pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-docs.git
commit 3e3e43d748f778b0cc49ecc1b84f49eb4561fd43 Author: DeanLee <[email protected]> AuthorDate: Tue Aug 21 14:01:22 2018 +0800 correct packaging translation mistakes --- java-chassis-reference/en_US/packaging/standalone.md | 5 +++-- java-chassis-reference/en_US/packaging/web-container.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/java-chassis-reference/en_US/packaging/standalone.md b/java-chassis-reference/en_US/packaging/standalone.md index 0966089..f9f0534 100644 --- a/java-chassis-reference/en_US/packaging/standalone.md +++ b/java-chassis-reference/en_US/packaging/standalone.md @@ -7,8 +7,9 @@ A Standalone container that loads Spring with a simple Main, because the service * **Step 1** Write the Main function, initialize the log and load the service configuration as follows: ```java -import com.huawei.paas.foundation.common.utils.BeanUtils; -import com.huawei.paas.foundation.common.utils.Log4jUtils; +import org.apache.servicecomb.foundation.common.utils.BeanUtils; +import org.apache.servicecomb.foundation.common.utils.Log4jUtils; + public class MainServer { public static void main(String[] args) throws Exception { Log4jUtils.init(); # Log initialization diff --git a/java-chassis-reference/en_US/packaging/web-container.md b/java-chassis-reference/en_US/packaging/web-container.md index 63acefa..b435acb 100644 --- a/java-chassis-reference/en_US/packaging/web-container.md +++ b/java-chassis-reference/en_US/packaging/web-container.md @@ -1,6 +1,6 @@ ## Concept Description -If you need to load the microservice into the web container to start the runtime, you need to create a new servlet project wrapper, the servlet project, you can not write or write a small amount of boot code as needed. +If you need to load the microservice into the web container to start the runtime, you need to create a new servlet project wrapper, the servlet project, you just need write few lines of code ## Development example
