Posts by filipeportes • 325 points
9 posts
-
1
votes1
answer113
viewsA: Simplejaxwsserviceexporter - Baseddress
I suggest using this setting: dependency: <dependency> <groupId>org.jvnet.jax-ws-commons.spring</groupId> <artifactId>jaxws-spring</artifactId>…
-
2
votes1
answer270
viewsA: I can’t get the artifacts into Maven
In your pom.xml file the tag <dependencies> is appearing 2 times: <dependencies> <dependency> <groupId>javax.servlet</groupId>…
-
0
votes2
answers441
viewsA: Error installing a War in jboss eap 6.2 with myfaces jsf 1.1
Modern versions of application servers already have great classpath isolation per project, so it is very unlikely that the problem is related to conflicts between libraries loaded by your project…
-
7
votes1
answer876
viewsA: How to implement a map showing the units of a particular store on a website
a good option is to use the API of google maps. here you can see some tutorials and a working example: http://www.princiweb.com.br/demos/google-maps-api-v3-busca-endereco-autocomplete/ sources:…
-
1
votes1
answer96
viewsA: Object after persistence and return inconsistent to a dropdown list
this may be related to the problem, I see no need to use the mapping @OneToOne in your case, use it only if you need reverse mapping, ie Destination within Category. always prefer to use the…
-
2
votes1
answer161
viewsA: Fileunput Primefaces does not update the attribute;
your form is using the default enctype that is application/x-www-form-urlencoded, to handle POST requests involving binaries, that the case of a file upload, it is necessary to use a specific…
-
1
votes2
answers1647
viewsA: Primefaces + Bootstrap Admin LTE Conflict jQuery
The primefaces also uses Jquery in its implementation, and automatically adds an import to jquery in the version it needs. in the archive index.html Adminlte also has an import for Jquery <!--…
-
2
votes2
answers1020
viewsA: Lock a button inside a datatable in the primefaces
Use the Client Side API of the commandButton component through the attribute widgetVar to disable its buttons using only Avascript. In your commandButton <p:commandButton ... widgetVar="botao1"…
-
4
votes1
answer442
viewsA: What is the relationship between the Primefaces ajax and the events
Your question is very pertinent, because the primefaces is a component framework that when rendered by JSF results in html, js and jquery in the client’s browser. So in practice events can be of the…