Posts by Pedro Teixeira • 171 points
14 posts
-
0
votes4
answers916
viewsA: Take the selected data in a v-select Multiple
You can use the reduce <v-select multiple v-model="criterios" :reduce="(x) => x.value" :options="criterios_list"/>
vue.jsanswered Pedro Teixeira 171 -
1
votes1
answer251
viewsA: Mockito returning null Spring Boot + Junit + org.mockito.Bddmockito
I found the problem, I switched @MockBean private NoticiaRepository noticiaRepository; For import org.mockito.Mock; @Mock private NoticiaRepository noticiaRepository;…
-
-1
votes1
answer251
viewsQ: Mockito returning null Spring Boot + Junit + org.mockito.Bddmockito
Everything all right, guys? At the time I make a mock my error application and returns null of the mock, I have tried several ways to resolve, but it does not send anything different, could help me?…
-
4
votes1
answer225
viewsQ: Ratio of threads to number of processors
In the image below my task manager there are 3058 Threads. My processor has 4 threads. This means that of these 3058 it will run 4 in 4 threads? My processor has 4 cores and 4 threads, that means…
-
0
votes1
answer23
viewsA: Problem setting an object from a remote ejb
The problem was in Tomcat’s Transfer, I forgot to add the path of this EJB.
-
-2
votes1
answer23
viewsQ: Problem setting an object from a remote ejb
I’m having trouble using a Set of a remote EJB object, this object will be sent to the same EJB and there will make a connection to the bank or a webservice(As it is a company application I can not…
-
0
votes1
answer29
viewsQ: Problem when receiving value in a select with richfaces
Good morning guys, I need help in the example below: <rich:select value="#{bdaBean.argosDocum.localizacaoObra}" disabled="#{not(bdaBean.usuarioPodeAtualizarBDA)}" height="20px"…
-
0
votes1
answer160
viewsQ: Convert program to other encoding in java Ex:(UTF-8 to ansi)
Good afternoon guys, my code from nothing passed to a different encoding, which I believe to be UTF-8, at the time of executing the code happens the following error: unmappable character for…
-
7
votes1
answer8513
viewsQ: How to do Localdatetime(Datetimezone.forID("America/Sao_paulo")) in Java.time
I wonder if there’s any way to mimic that code on java.time: LocalDateTime(DateTimeZone.forID("America/Sao_Paulo")) I don’t work very well with date in Java, if you can also explain to me what this…
-
1
votes4
answers2676
viewsA: Problem with Beans in spring : No Qualifying bean of type
The application Mappers were in the constructor and the @Autowired annotation tried to inject them as dependencies. This was causing the problem, after taking them out of the constructor of each…
-
2
votes4
answers2676
viewsQ: Problem with Beans in spring : No Qualifying bean of type
I’m having the following problem with the Beans in spring: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'agrupamentoTaxonomiaController' defined in…
-
0
votes1
answer65
viewsQ: Problem mounting server Angularjs
Good afternoon guys, I’m having trouble trying while running an angular js project, because I only worked with angular 2+, at the time I run an npm start the following error occurs: npm ERR! Missing…
angularjsasked Pedro Teixeira 171 -
0
votes0
answers10
viewsQ: Missing Resources folder when clone
I have the following problem, after clone in git the following folders disappear and I can’t put them back in that state. Someone would know how to set them up to come back?…
eclipseasked Pedro Teixeira 171 -
2
votes3
answers165
viewsQ: Problem checking if a type any is Undefined in Typescript
I am having a problem checking if a variable is Undefined in the following typescript code. Atendimento:any; this.Atendimento.Checkout.Observacao == undefined ? '' :…