Posts by Marcus Vinicius • 159 points
15 posts
-
1
votes1
answer84
viewsA: Pass user authentication between different contexts
Do you know how Single Sign On works? I will speak according to the Oauth and SAML protocols, both in version 2.0. Come on, you’ll have a third person involved, an identity server, or at the time of…
-
1
votes2
answers1258
viewsA: What is and how does an Enterprise Application Bus(ESB) work?
Man, I’ll give you a clear answer, better than copying and pasting here like my friend did there. Come on, imagine you have an app that consumes one service from another. so far so good ? Now…
-
0
votes3
answers6760
viewsA: When is the use of an Enterprise Service Bus (ESB) recommended?
You should use a bus when you see the need for communication between systems where one integration depends on another. For example: You call a service a middleware, and that middleware calls other…
-
1
votes2
answers804
viewsA: Java jsf image
creates a directory images within Resources in WEB-INF and puts your image inside it. leaves your code like this <h:graphicImage library="imagens" name="LojaRoupas.jpg"/> Remember the param…
-
1
votes2
answers99
viewsA: Datatable data is not displayed, even with loading of Arraylist running correctly
Do not use List when using Lazy = true. puts it like this: LazyDataModel<MeusJogos> = new LazyDataModel(){ public load (...){ DAO<MeusJogos>(MeusJogos.class).listaTodos(); } } will solve…
-
2
votes1
answer66
viewsQ: How to disable a button during ajax request with primefaces?
How to disable a button during ajax request with primefaces using p:ajaxStatus. I wanted to do it in a generic way, ex: all buttons will be disabled during ajax request;
-
1
votes0
answers41
viewsQ: Update on component created with Composite does not work
Staff created a component using Composite <composite:implementation> <p:dataTable id="#{cc.attrs.id}" </dataTable> </composite:implementation> But when I call it in my code it…
-
1
votes0
answers67
viewsQ: Error with Sessionexpirationscheduler in widfly
When I changed the jboss all to use Shared Session, my application after a while starts from that error below, someone knows how to solve? 12:08:40,332 WARN…
-
0
votes2
answers437
viewsA: Question how to submit a JSF form using <p:confirmDialog>
puts it like this <p:commandLink action=""> <p:confirm header="" message="" /> </p:commandLink>
-
3
votes1
answer274
viewsQ: How to generate compiled classes and maintain the. java in Maven?
Guys every time I do Maven install it compiles the classes and generates the xxx.class, so far so good. I would like to know if it is possible to generate . class and also keep all . java, in the…
-
1
votes1
answer116
viewsQ: Facebook namespace not working in JSF?
I’m using personal jsf, I’m trying to make facebook recognize my metatags: <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"…
-
1
votes0
answers32
viewsQ: Primefaces datascroller only loads once with Lazy
Guys, I started using dataScroller today with Lazy of the first faces <p:dataScroller ajax="true" id="listaDiarios" chunkSize="3" lazy="true" styleClass='ui-datagrid-no-border'…
-
0
votes1
answer202
viewsQ: Why does the primefaces dataScroller stop fetching records?
My xhtml is like this: <p:dataScroller ajax="true" id="listaDiarios" chunkSize="3" lazy="true" value="#{managedBeanUsuario.lazyRegistrosDiarios}"…
-
1
votes0
answers204
viewsQ: Join two <h:datatable> with jQuery without losing records after update
I have two datatables, the first one loads 5 records when loading the page and the second one is hidden and empty. Whenever the scroll reaches the bottom of the page I go in the database, I load 5…
-
0
votes0
answers151
viewsQ: How to add new columns in h:datatable in jsf without refreshing what update does in the table,
Guys, I have a problem, I created a paginated query that always brings 5 records, implemented with jquery one $(window). scroll so that whenever the scroll arrives at the bottom of the page it…