Posts by guiandmag • 3,339 points
64 posts
-
0
votes1
answer748
viewsA: Are there other GUI libraries besides awt, swing and javafx?
Man, if there is I don’t know if it’s worth using, because I’ve never heard of it and I don’t know how it is. What I can talk about is these three that you mention in the title. AWT AWT was the…
-
0
votes2
answers173
viewsA: How to create Pojos with annotations quickly?
Yes, by Eclipse you can reverse engineer your table for a JPA entity. https://www.eclipse.org/webtools/dali/docs/3.2/user_guide/tasks007.htm…
-
0
votes2
answers318
viewsA: DAO + Webservice
You should think about separating layers before anything else. Let’s think, the DAO Pattern is a standard for access to the database, it is a layer for this, should not imagine it with another…
-
4
votes3
answers477
viewsA: How to use GIT connected to the server?
Yes, and you should do that, abandon FTP once and for all. But the main question must be, and how do you do it? Git is a SCM (Source Control Management) tool, which is a tool for controlling your…
-
5
votes2
answers18970
views -
0
votes2
answers132
viewsA: Programming startup
Try to understand and study first of all, paradigms. Technologies follow paradigms, such as object orientation, events, sequential, etc. The important thing is that you understand what you are…
-
2
votes1
answer395
viewsA: Continuous integration and agile methodologies
That’s an interesting question. CI(Continuous Integration) defines some rules to really be considered as a CI development environment. However, it does not intrinsically define the use of an agile…
-
1
votes1
answer4674
viewsA: CSS does not load, Resource Interpreted as Stylesheet but transferred with MIME type text/html
Browsers request HTTP for servers. The server then returns an HTTP replay. Both request and Response consist of a lot of headers and a body (sometimes optional) with some content in it. If there is…
-
2
votes0
answers79
viewsQ: Maven UML Generator
I wonder if there is a more current plugin to generate the UML of my classes in a Maven project. The idea would be to run this "uml Generator" engine on the integration server continues, and so…
-
0
votes1
answer140
views -
1
votes1
answer140
views -
2
votes3
answers326
viewsA: bitbucket - doubt about workflow, branchs and merge
This is a workflow query with git, this is common to happen when you want to work with multiple branch’s, I’ll show git Successful workflow. Here has a good example of how to work this way, I also…
-
5
votes3
answers8791
viewsA: What is the difference between checked (checked) and unchecked (unchecked) exceptions?
Briefly the exceptions Checked are those in which you are required to treat it, either with a Try-catch block or even with a throws (re-releasing the same to another location). On the other hand,…
-
2
votes5
answers2467
viewsA: Is it feasible to define mandatory fields in the application instead of the database?
Face this will depend on your need for both business and consistency. There will be cases that you will need to ensure in the database that the value of the field cannot be null, I’ll give you an…