我正在使用Eclipse来了解SampleSyncAdapter示例的工作原理.我不能让我的断点工作.我在多个位置设置了一个断点但没有被击中.例如,AuthenticatorActivity.onCreate()永远不会被调用.谁知道为什么?
谢谢.
我正在尝试在jhipster生成的Angular 5应用程序上使用component另一个应用程序。module
当module导入包含component我要使用的 的时,route发生module导入的 的 会被route导入的覆盖module。
phone.module.ts出口PhoneComponent。contact-info.module.ts进口phone.module.ts。route声明的contact-info.route.ts开始渲染 中声明的组件phone.module.ts。看来电话模块已被完全覆盖。phone.module.tsimport { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { RouterModule } from '@angular/router';
import { JhiLanguageService } from 'ng-jhipster';
import { JhiLanguageHelper } from 'app/core';
import { FrontendSharedModule } from 'app/shared';
import {
PhoneComponent,
PhoneDetailComponent,
PhoneUpdateComponent,
PhoneDeletePopupComponent,
PhoneDeleteDialogComponent,
phoneRoute, …Run Code Online (Sandbox Code Playgroud)