nderwin.wordpress.com
Introducing Project LEE7 – Learning Java EE 7 | Nathan Erwin's Blog
https://nderwin.wordpress.com/2014/04/07/introducing-project-lee7-learning-java-ee-7
Nathan Erwin's Blog. You keep using that word. I do not think it means what you think it means. Introducing Project LEE7 – Learning Java EE 7. Additionally, I will be creating some different REST clients for the web services. There will be a Swing desktop app, JavaFX desktop app (yes, I know, not much difference there), an AngularJS client, and if I get ambitious, an Android client. All of these sub-projects are housed in my GitHub repository. This entry was posted on Monday, April 7th, 2014 at 4:26 pm a...
evieira.wordpress.com
JavaFX – Overview | Eduardo Vieira
https://evieira.wordpress.com/2010/01/17/javafx-overview
JavaFX – Overview. Janeiro 17, 2010 in Java. Aproveitando a deixa da palestra, vou falar hoje um pouco dessa pequena grande promessa: JavaFX. O que é JavaFX? Pra que mais uma linguagem se já temos tantas, como Java? Java, como linguagem, atende um propósito geral. Geral no sentido de que ela nos permite construir aplicações para TUDO (celular, tv, blu-ray, desktop, microcontroladores), sem precisarmos recorrer a outra tecnologia (exceto em casos que precisamos de recursos nativos. RIA e a evolução da Web.
nderwin.wordpress.com
Project LEE7 – Server Bits | Nathan Erwin's Blog
https://nderwin.wordpress.com/2014/04/14/project-lee7-server-bits
Nathan Erwin's Blog. You keep using that word. I do not think it means what you think it means. Project LEE7 – Server Bits. This post is part of a series about Learning Java EE 7. The previous post gives a quick introduction. So, let us start with a little deeper dive into the persistence layer. Be agile, we will make it more complex in a future iteration. Entity(name = "LegalEntity") @Inheritance(strategy = InheritanceType.TABLE PER CLASS) public abstract class LegalEntity implements Serializable { ...
nderwin.wordpress.com
Project LEE7 – Give it a REST | Nathan Erwin's Blog
https://nderwin.wordpress.com/2014/09/24/project-lee7-give-it-a-rest
Nathan Erwin's Blog. You keep using that word. I do not think it means what you think it means. Project LEE7 – Give it a REST. I started thinking about how I would document the REST endpoints for use by outside processes (web UI, desktop UI, maybe some other server side code), when I stumbled upon Swagger. After playing around with it for a little bit, it became clear that the existing REST endpoints were not quite right. Thus, I began another round of refactoring. REST Endpoints Part Deux. 8211; return ...
nderwin.wordpress.com
Project LEE7 – Persistent Issues | Nathan Erwin's Blog
https://nderwin.wordpress.com/2014/09/08/project-lee7-persistent-issues
Nathan Erwin's Blog. You keep using that word. I do not think it means what you think it means. Project LEE7 – Persistent Issues. Getting back to an issue I had earlier. Now, all the code that I had in two places are replaced by two simple annotations on the field – @NotNull, and @Size(min, max). Basic(optional = false) @Column(name = givenname, nullable = false, length = 50) @NotNull @Size(min = 1, max = 50) private String givenName;. Sudo -u postgres psql -c ALTER USER postgres PASSWORD 'postgres';.
nderwin.wordpress.com
Fun with JasperReports: Drop Shadows | Nathan Erwin's Blog
https://nderwin.wordpress.com/2013/10/20/fun-with-jasperreports-drop-shadows
Nathan Erwin's Blog. You keep using that word. I do not think it means what you think it means. Fun with JasperReports: Drop Shadows. Has the basic set of font effects available – bold. But, what if you want something a little different… say, a drop shadow? Well, this trick is for you. Disclaimer: This works for PDF output, and only for text fields that will not stretch with overflow. CDATA["Drop Shadow"] /textFieldExpression /textField. Drop shadow effect in JasperReports. Feed You can leave a response.
nderwin.wordpress.com
Project LEE7 – Unit and Integration Testing | Nathan Erwin's Blog
https://nderwin.wordpress.com/2014/08/29/project-lee7-unit-and-integration-testing
Nathan Erwin's Blog. You keep using that word. I do not think it means what you think it means. Project LEE7 – Unit and Integration Testing. 8221; Obviously, I am not one of those types of people, but I do think that we have a minimum amount of functioning code, so we should start adding some tests now rather than trying to do it all in one shot later. For unit testing, we will use the venerable JUnit framework and maven-surefire-plugin. I’ve also added the surefire report plugin for when the maven...