Posts by Guilherme Costa Lopes • 47 points
11 posts
-
-1
votes1
answer11
viewsQ: background image in div
Does not show image <div style="background-image:url(http://localhost:4200/assets/images/background/login-register.jpg);"></div> Typing like this in the browser,…
angular-6asked Guilherme Costa Lopes 47 -
-2
votes1
answer152
viewsQ: Translate at angular 6
I’m using the i18n at the angle as the image below: In app.component.ts is like this: import { Component } from "@angular/core"; import { TranslateService } from "@ngx-translate/core"; @Component({…
-
0
votes1
answer11
viewsA: Increment within the subscribe
It worked that way: private preencherPlanosSaudes() { this.planoSaudeService.buscarTodos().subscribe( (data : any[]) => { data.forEach( d => { let ps = new EnumModel(); ps.key = d.id; ps.texto…
-
0
votes1
answer11
viewsQ: Increment within the subscribe
I have this method that gets the list date, what works, after a query in the database. private preencherPlanosSaudes() { this.planoSaudeService.buscarTodos().subscribe( (data : any[]) => { let ps…
-
1
votes1
answer100
viewsQ: I understand that the post method is getting it wrong at Postman
My controller package br.com.clinicamedica.controller.especialidade; import static org.springframework.http.HttpStatus.CONFLICT; import static org.springframework.http.HttpStatus.OK; import static…
-
0
votes0
answers61
viewsQ: Angular Service with error
The error is after compiling: ERROR in src/app/core/services/service-principal.service.ts:25:12 - error NG2003: No suitable Injection token for Parameter 'base' of class 'Serviceprincipalservice'.…
angularasked Guilherme Costa Lopes 47 -
-1
votes1
answer153
viewsQ: Git connection to the Jenkins server on Azure: Host key Verification failed
In the repository in the URL: git@xxxxx:root/ghnetsoft-utilitario.git Made this mistake: Failed to connect to repository : Command "git ls-remote -h git@ xxxxxx :root/ghnetsoft-utilitario.git HEAD"…
-
-3
votes1
answer63
viewsQ: New machine and eclipse installation, Maven and all java project
I installed the eclipse. Java Maven I downloaded the project when I go on the option Maven clean, gives the error: [INFO] Scanning for projects... Downloading:…
-
0
votes1
answer27
viewsA: Error after using Flyway in project
Personal user package br.com.ghsistemas.usuarios.rest.pessoausuario; import br.com.ghsistemas.principal.utilitario.mensagem.Mensagem; import…
-
-1
votes1
answer27
viewsQ: Error after using Flyway in project
As I said on this topic Project flyway and jpa-Ibernate getting confused, includes in our project the Flyway, After correctly running Flyway and the project create the tables, insert, change and…
-
4
votes0
answers139
viewsQ: Project flyway and jpa-Ibernate getting confused
In the project we are creating, on site, to the initial JPA - Ibernate, created the tables and inserted some information, for tests. Well the project was growing and we decided to include the flyway…