Posts by ℛɑƒæĿᴿᴹᴿ • 1,680 points
66 posts
-
1
votes1
answer5061
viewsA: How to make the link clickable, to be accessed?
Brkappa, Try following the example below, simply using an HTML link: print('<a href="http://www.exemplo.com.br">Texto do link</a>') To open an external link in the browser, you must use…
python-3.xanswered ℛɑƒæĿᴿᴹᴿ 1,680 -
0
votes1
answer212
viewsA: How to make a search system with Friendly Urls
Lucas, In that blog has a very complete explanation, but in short you should do the following: You need to mark the current addresses of your site and how you want them to look. Follow a pattern to…
-
0
votes2
answers64
viewsA: Creating XML File With Find a particular user in the table using foreach jpa java
Since you do not have an effective control of each element, I suggest you perform your query in an orderly manner (ORDER BY) to have greater assurance that the correct data are moving in parallel.…
-
5
votes3
answers66689
viewsA: How do I activate IIS in windows 10?
Windows 10 since Home version already has availability for IIS. If you need to install remember that for the Windows 10 you must install the IIS10. Download:…
-
2
votes3
answers2965
views -
0
votes1
answer41
viewsA: Primefaces Dragdrop does not fire event
Hisoka, It probably has to do with jQuery yes, my suggestion is that you put it that way: Remove javascript from your header tag Add it just above the form, as in the example <ui:define…
-
6
votes2
answers849
viewsQ: What is the difference between SET and SETX?
To fix a new environment variable in Windows I checked that there are commands SET and SETX. What is the exact difference between the two commands?
-
0
votes2
answers672
viewsA: Script bat not run completely
Your Java machine can be configured using %JAVA_HOME% as the environment variable. Open cmd windows and type: setx JAVA_HOME "C:\Program Files\Java\jdk1.8.0" Put your JVM path exactly in the above…
-
1
votes1
answer43
viewsA: How to limit a JDBC connection to only do "select" queries?
Rebeccamm, First create a new user in your database Give this user only the necessary permissions, in your case only SELECT Use the following code to perform the above operations: CREATE USER…
-
0
votes1
answer1197
viewsA: mkdir does not create the directory
Lucas, The command mkdir has the following path, mode and recursive parameters. Question: The path C:/xampp/htdocs/Lucktor/arquivos/ exite? If using Windows the mode parameter is ignored, try this…
-
1
votes1
answer1116
views -
4
votes4
answers806
viewsA: Organizing positions of a vector
The Java offers different ways to copy the contents of a array to another: Implementing a loop with the command for Using the method clone Using System.arraycopy Using Arrays.copyOf The most…
-
1
votes3
answers3802
viewsA: Load a list of Enums
Douglas, The easiest way to return the list of enums is: public EnumSet<Atributos> listarAtributos() { return EnumSet.allOf(Atributos.class); } I hope it helps ;) Hug!…
-
1
votes1
answer102
viewsA: Primefaces component did not render as expected
Douglas, Your XHTML page starts with the component h:panelGroup before the form: <h:panelGroup id="cadastro"> I suggest you put the form as the first element and use only native components of…
-
3
votes1
answer2259
viewsA: How to send an object by parameter?
There’s four ways for you to pass an object as a parameter via JSF: 1. Since version 2.0 of JSF you can pass parameters directly: Page XHTML: <h:commandButton…
-
1
votes1
answer76
viewsA: Hibernate returns many queries and overwrites my changes
Friend, It would be nice if you post the mapping data of the Product entity. For the first problem, regarding to overwrite data I suggest you read more about the annotation @Cascade, property used…