Java Code Examples for org.apache.servicecomb.foundation.common.utils.BeanUtils#init()

The following examples show how to use org.apache.servicecomb.foundation.common.utils.BeanUtils#init() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CodeFirstConsumerMain.java    From servicecomb-samples with Apache License 2.0 5 votes vote down vote up
public static void main(String[] args) {
  BeanUtils.init();
  System.out.println(hello.sayHi("Java Chassis"));
  System.out.println(jaxrsHello.sayHi("Java Chassis"));
  System.out.println(springmvcHello.sayHi("Java Chassis"));
  Person person = new Person();
  person.setName("ServiceComb/Java Chassis");
  System.out.println(hello.sayHello(person));
  System.out.println(jaxrsHello.sayHello(person));
  System.out.println(springmvcHello.sayHello(person));
}
 
Example 2
Source File: SpringmvcClient.java    From servicecomb-java-chassis with Apache License 2.0 5 votes vote down vote up
public static void main(String[] args) throws Exception {
  try {
    Log4jUtils.init();
    BeanUtils.init();

    run();
  } catch (Throwable e) {
    TestMgr.check("success", "failed");
    LOGGER.error("-------------- test failed -------------");
    LOGGER.error("", e);
    LOGGER.error("-------------- test failed -------------");
  }
  TestMgr.summary();
}
 
Example 3
Source File: CrossappClient.java    From servicecomb-java-chassis with Apache License 2.0 5 votes vote down vote up
public static void main(String[] args) throws Exception {
  System.setProperty("sun.net.http.allowRestrictedHeaders", "true");
  Log4jUtils.init();
  BeanUtils.init();

  run();

  TestMgr.summary();
  System.setProperty("sun.net.http.allowRestrictedHeaders", "false");
}
 
Example 4
Source File: SpringmvcConsumerMain.java    From servicecomb-samples with Apache License 2.0 5 votes vote down vote up
public static void main(String[] args) throws Exception {
  BeanUtils.init();

  SpringmvcBasicClient springmvcBasicClient = BeanUtils.getBean("SpringmvcBasicClient");
  SpringmvcHelloClient springmvcHelloClient = BeanUtils.getBean("SpringmvcHelloClient");

  long begin = System.currentTimeMillis();
  springmvcHelloClient.run();
  springmvcBasicClient.run();

  System.out.println("Spring MVC Consumer execute successfully." + (System.currentTimeMillis() - begin) );
}
 
Example 5
Source File: UserMain.java    From servicecomb-samples with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  BeanUtils.init();
}
 
Example 6
Source File: Application.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  BeanUtils.init();
}
 
Example 7
Source File: MultipleServer.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  Log4jUtils.init();
  BeanUtils.init();
}
 
Example 8
Source File: AuthMain.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  Log4jUtils.init();
  BeanUtils.init();
}
 
Example 9
Source File: PojoServer.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  Log4jUtils.init();
  BeanUtils.init();
}
 
Example 10
Source File: Application.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  BeanUtils.init();
}
 
Example 11
Source File: SpringMvcTestMain.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  Log4jUtils.init();
  BeanUtils.init();
}
 
Example 12
Source File: BusinessMain_V1_1_0.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  Log4jUtils.init();
  BeanUtils.init();
}
 
Example 13
Source File: AppMain.java    From spring-cloud-huawei with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
    Log4jUtils.init();
    BeanUtils.init();
}
 
Example 14
Source File: AServerMain.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  Log4jUtils.init();
  BeanUtils.init();
}
 
Example 15
Source File: SpringMvcTestMain.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  Log4jUtils.init();
  BeanUtils.init();
}
 
Example 16
Source File: TestMetricsBootListener.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
@Before
public void setUp() {
  // Metrics boot depends on executor bean. Old test will fail but event handling not throw the error.
  BeanUtils.init();
}
 
Example 17
Source File: TrustMain.java    From servicecomb-samples with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
  BeanUtils.init();
}
 
Example 18
Source File: HackerMain.java    From servicecomb-samples with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
  BeanUtils.init();
  System.out.println("a=1, b=2, result=" + compute.add(1, 2));
}
 
Example 19
Source File: Application.java    From servicecomb-java-chassis with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  BeanUtils.init();
}
 
Example 20
Source File: CodeFirstProviderMain.java    From servicecomb-samples with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
  BeanUtils.init();
}