有没有办法为服务定义命名空间,例如,有2个不同的服务具有相同的名称,并由命名空间区分(例如,命名空间可能是版本)
在控制器中我们可以做到
scanner = new Scanner(System.in);
String topic = scanner.nextLine();
topic = topic.toLowerCase();
if (topic.contains("time") || topic.contains("date")){
System.out.println("The time is " + Calendar.getInstance().getTime());
}
是否可以在服务中执行此操作,在这种情况下我们应该如何拨打电话。
由于