Search Results for: Eclipse

  • Groovy

    Basic Groovy and Grails Code Review Guidelines

    I’ve been – and still am – teaching Grails to non-Java programmers for a while now. This also meant to…

    Read More »
  • Enterprise Javaspring-interview-questions-answers

    Spring Batch Tutorial – The ULTIMATE Guide

    This is  Spring batch tutorial which is part of the Spring framework. Spring Batch provides reusable functions that are essential in processing…

    Read More »
  • Groovy

    Excellent! Groovy Intends to Join Apache Software Foundation

    In the post “Total Bummer: Pivotal Drops Groovy“, I briefly wrote about Pivotal’s decision to drop Groovy and hoped that…

    Read More »
  • Java核心

    JDBC入门教程 – 终极指南

    本教程主要介绍JDBC(Java数据库连接)—— 一个Oracle提供的API,它可以帮助程序员处理Java应用程序中不同数据库的访问问题:程序员可以通过它建立与数据库的连接;定义特定的客户端使之可以访问给定的数据库;提供一种能够读取、插入、更新和删除数据库中的数据项的机制;以及控制由不同SQL语句组成的事务。 在本文中我们会介绍主要的JDBC组件,包括声明(Statement)、结果集(Result Set)、存储过程(Stored Procedure)。 程序员们需要针对不同的数据库提供相应的驱动程序;在后面的章节我们会结合一些实例来详细解释。 JDBC是伴随Java的产生而产生的;它的第一个版本产生于1997年2月,也就是JDK1.1的发布日期;自那以后,JDBC已经成为Java的一个重要组成部分。JDBC相关的主要包有: http://docs.oracle.com/javase/8/docs/api/java/sql/package-summary.html 和http://docs.oracle.com/javase/8/docs/api/javax/sql/package-summary.html. 关于JDBC的最新版本和开发、维护信息可以访问JSR 221获得。 本文中的所有例子的实现环境是Java 8 update 0_25和Eclipse SDK  Luna 4.4. 你可以在本文的最后下载所有这些例子,而且还可以下载其他更多的例子! 目录 1. 组件(Components) 2. 数据库连接(Connections) 3. 数据类型(Data types) 4. 驱动程序(Drivers) 5. 数据库(Databases) 6. 结果集(Result…

    Read More »
  • DevOps

    9 Docker recipes for Java EE Application

    Cross-posted from www.voxxed.com/blog/2015/03/9-docker-recipes-for-java-ee-applications/ So, you’d like to start using Docker for Java EE applications? A typical Java EE application consists…

    Read More »
  • Groovy

    Spock 1.0 with Groovy 2.4 configuration comparison in Maven and Gradle

    Quick tutorial how to configure Spock 1.0 with Groovy 2.4 using Maven and Gradle. Spock 1.0 has been finally released.…

    Read More »
  • Enterprise Javajava-interview-questions-answers

    Creating Web Services and a Rest Server with JAX-RS and Jetty

    Creating a WebService in Java is remarkably easy. To add it to a ServletContainer and deploy it to an embedded…

    Read More »
  • Java核心

    单元测试Junit入门(PDF下载)

    编者按:在Java Code Geeks,我们已经提供了大量JUnit的教程,例如JUnit入门示例,使用JUnit的断言和注释例子,JUnit的注释示例等。然而,我们倾向收集所有的JUnit特性在一个详细的指南以方便读者。我们希望你喜欢它! 目录 1.单元测试的介绍 1.1. 什么是单元测试? 1.2. 测试覆盖 1.3. 在Java中的单元测试 2. JUnit的介绍 2.1. 使用Eclipse JUnit的简单示例 2.2. JUnit的注释 2.3. JUnit断言…

    Read More »
  • Enterprise Javajava-interview-questions-answers

    Java EE7 and Maven project for newbies – part 8

    Part #1, Part #2, Part #3, Part #4, Part #5, Part #6, Part #7  Part #8 It’s been a long…

    Read More »
Back to top button