Posts by Alexandre • 476 points
13 posts
-
2
votes1
answer32
viewsA: keywords on the wordpress site, how to put?
Install the plugin "Header and Footer Scripts" and then go to "Settings -> Header and Footer Scripts" and in the header field include as in this link:…
-
2
votes4
answers31911
viewsA: What is the difference between compiled language for interpreted language?
The compilation translates your code to be executed in a specific environment (for, for example, a particular S.O.). In the interpretation you write a code to be interpreted by another program that…
-
0
votes1
answer460
viewsA: How do I communicate Javascript data in JSF?
You have to pass this "address" to your JSF. You can pass it by including it in some form field that will be submitted or you can do it directly with javascript using the JSF js API:…
-
2
votes1
answer38
viewsA: Keep my app checking for Webservice updates
I have a similar case and I’m going to solve it with https://developers.google.com/cloud-messaging/ Basically, it is a service that allows sending messages from the server to the mobile device and…
-
0
votes2
answers453
viewsA: Problems with table configuration in Primefaces
You can configure the CSS class you created: .rotulo { width: 250px; text-align: right }
-
2
votes3
answers644
viewsA: Discovering the SQL of a Resultset
You should get SQL from java.sql.Preparedstatement: System.out.println(ps); Just call toString Preparestatement.
-
1
votes1
answer187
viewsA: Modify HTML element via Jquery functions
Change of: <div id="index-mascara">[EFEITO]</div> To: <div class="index-mascara">[EFEITO]</div> And to get to ". index-mascara" from ". title-date" use: var mascara =…
-
1
votes1
answer652
viewsA: Angular Search Result in another view
Before the excerpt you put in the question the only reason for not working as expected would be to consider the parameters when making the request: angular.module("myApp").controller("buscaCtrl",…
-
18
votes3
answers16809
viewsA: How to generate an executable . jar using Maven?
Yes, it is missing to specify your main class (main class). For this you can use this plugin: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId>…
-
0
votes2
answers1089
viewsA: Is there an online server where I can send a form made in Android with Json to test?
From what I understand, you are looking for a free accommodation. So, you can use this: https://byethost.com/index.php/free-hosting…
-
0
votes2
answers837
viewsA: data registration via ajax
This should be pq vc is setting up your ajax to send json, only with the code below: var dataString = $("form").serialize(); ... vc is sending "application/x-www-form-urlencoded" (in terms of…
-
0
votes3
answers490
viewsA: Why not use an Application Container like Jboss when using Spring?
It’s not that you shouldn’t or can’t. But it’s something like installing Windows on your laptop, and inside Windows a virtual machine with Linux, and using the Linux virtual machine for everything.…
-
1
votes2
answers672
viewsA: Microsoft Azure to host website?
If you are thinking in the context of a single machine, then there are almost no advantages. I say almost, because you can always take advantage of the tools offered in these cloud environments,…