Posts by abv2014 • 129 points
14 posts
-
0
votes2
answers6011
viewsA: What is the meaning and form of volume use in Dockerfile?
Volume is when you need to share directory or folder between the host filesystem and the container filesystem. VOLUME /opt/host /opt/container In dockerfile always the first parameter refers to the…
-
1
votes1
answer101
viewsA: Resteasy @Form annotation does not work in Glassfish 4.1
As the application was made for Jboss, to run on glassfish not only the migration of the Rest service will be a challenge. It is not trivial to run Jersey on Jboss or Resteasy on Glassfish. To…
-
0
votes5
answers554
viewsA: Error passing URL as parameter... Joeblogs & Htmlagilitypack
Before making the request the parameter must be encoded in Base64. When obtaining the request parameter do the Decode of the parameter with Base64 also.
-
1
votes1
answer58
viewsA: Send a message to all
CDI events can help you solve your problem as described here.
-
1
votes1
answer809
viewsA: Persistenceunit: fabricaweb2 Unable to build Entitymanagerfactory
Include the postgres dialect in the persistence.xml file as below: <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
-
0
votes2
answers290
viewsA: What is the life cycle behavior of JSF 2 when validating mandatory fields?
I found Balusc’s answer very enlightening about this problem here. He says: When at least one input component is invalid, after the validation phase, then JSF will not update the model values for…
-
1
votes2
answers290
viewsQ: What is the life cycle behavior of JSF 2 when validating mandatory fields?
I have a customer registration form with two fields, the first field is the CPF with mandatory and the second Name with optional. When editing a client with CPF and Name populated, delete the two…
-
0
votes2
answers1479
viewsA: Sources in jasperreports reports on wildfly
In addition to the steps described in the reference included in the question, also include the src/main/Resources/fonts folder and within it copy from C: Windows Fonts the fonts you need to use in…
-
1
votes2
answers288
viewsA: How to block external requests in Jboss?
In jboss older versions, you can pass the parameter -b X.X.X.X so that only your machine can request Jboss. Source:…
-
0
votes2
answers555
viewsA: generate java artifacts Maven project with Parent on Jenkins
In the Jenkins menu -> Manage Jenkins -> Configure the system -> configure the JDK, the Maven, the email for notifications. After that, create a Job in the New Job menu and choose "Build a…
-
0
votes3
answers244
viewsA: Numerical counter
Your architectural tactic using the bootstrap framework supports your vision layer rendering requirements, but your strategy to meet other back-end requirements is not listed. Usually this counter…
-
1
votes2
answers3697
viewsA: How to schedule releases on continuous integration with Jenkins?
The standard to repeat every 3 hours is: H */3 * * *. Tested on Jenkins version 1.612
-
1
votes2
answers1176
viewsA: Error Building on Jenkins
When working with continuous integration you are not always allowed to change the projects' pom.xml. So, the best way to deploy projects is to use the Jenkins plugin that does this job. The…
-
1
votes1
answer396
viewsA: XA transaction does not commit changes in procedures (intermittent)
The ideal would be to isolate this case of intermittence. The environment is complex and to give a concrete answer we need to know if at least in the happy scenario the transaction occurs…