Skip to content

zhaokingheng/tp_m2_cb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GlassFish clickstart

This clickstart sets up a build service, repository and a basic GlassFish app with continuous deployment. All built by maven.

Launch this clickstart and glory could be yours too ! Use it as a building block if you like. You can launch this on Cloudbees via a clickstart automatically, or follow the instructions below.

This is based on the GlassFish stack that you can read more about here.

Deploying manually

Create a Glassfish4 container

bees app:create -a my-glassfish4-app -t glassfish4-full

Create a MySQL Database

bees db:create my-glassfish4-db

Bind the MySQL Database to the Glassfish container

bees app:bind -a my-glassfish4-app -db my-glassfish4-db -as mydb

Supported JNDI names:

  • jdbc/mydb : unqualified relative JNDI name is supported / OK
  • java:comp/env/jdbc/mydb: qualified private name is supported / OK
  • java:jdbc/mydb and java:/jdbc/mydb: qualified relative names are not supported by Glassfish / KO
  • java:global/env/jdbc/mydb: qualified global name is not supported by Glassfish / KO

Samples:

Context ctx = new InitialContext();
DataSource ds = (DataSource) ctx.lookup("jdbc/mydb");
DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/mydb");

Configure Jdbc Realm

bees config:set -a my-glassfish4-app -R glassfish4.auth-realm.database=mydb

Deploy Application

bees app:deploy -a my-glassfish4-app path/to/my/app.war

Jenkins Job

Create a new Maven project in Jenkins, changing the following:

  • Add this git repository (or yours, with this code) on Jenkins

  • Also check "Deploy to CloudBees" with those parameters:

      Applications: First Match
      Application Id: MYAPP_ID
      Filename Pattern: target/*.war
    

where MYAPP_IDis the name of your application.

Application

JMS sample

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published