Comparing JSF Beans, CDI Beans and EJBs | Andy Gibson - 0 views
-
differences between CDI beans and EJBs is that EJBs are : Transactional Remote or local Able to passivate stateful beans freeing up resources Able to make use of timers Can be asynchronous
-
Stateless EJBs can be thought of as thread safe single-use beans that don’t maintain any state between two web requests
-
Stateful EJBs do hold state and can be created and sit around for as long as they are needed until they are disposed of
- ...15 more annotations...
Containers - Arquillian - Project Documentation Editor - 0 views
-
Arquillian recognizes three container interaction styles: A remote container resides in a separate JVM from the test runner. Arquillian binds to the container to deploy the test archive and invokes tests via a remote protocol (e.g., Servlet, JMX). A managed container is similar to a remote container, except its lifecycle (startup/shutdown) is also managed by Arquillian. An embedded container resides in the same JVM and is mostly likely managed by Arquillian. Tests are executed via a local protocol for containers without a web component and via a remote protocol for containers with a web component. No need to fiddle with those Maven plugins!
-
Arquillian can control a variety of containers out of the box
Security Module Drafts - Apache DeltaSpike - Apache Software Foundation - 0 views
-
Authorization
-
Impersonalization
-
authenticates “as a user” or access application imitating his identity - without knowing his password
- ...36 more annotations...
JPA Reference Guide - JBoss AS 7.0 - Project Documentation Editor - 0 views
-
Persistence unit properties
-
Should be hibernate3-bundled if Hibernate 3 jars are in the application archive (adapterModule and adapterClass will automatically be set for hibernate3-bundled).
-
org.jboss.as.jpa.hibernate:3 (Hibernate 3 integration classes)
- ...14 more annotations...
GraniteDS Data Management Tutorial | Granite Data Services - 0 views
Logging Cheat Sheet - OWASP - 0 views
-
Legal and other opt-ins
-
Data changes
-
Event attributes
- ...35 more annotations...
Scrum Alliance - PMPs versus Agile Project Managers: Clash of the Titans - 0 views
ddd-cqrs-base-project - DDD-CQRS Base Project Using Spring and Hibernate (Manage Comple... - 0 views
-
ddd-cqrs-base-project DDD-CQRS Base Project Using Spring and Hibernate (Manage Complexity Simply)
Access Tokens and Types - Facebook Developers - 0 views
-
Access Tokens and Types
-
Access Tokens
-
random string that provides temporary, secure access to Facebook APIs
- ...27 more annotations...
Adobe Marketing Cloud - 0 views
-
Bookmark Manager
-
bookmarks public
-
display a bookmark report upon login
- ...14 more annotations...
Database Schema - JIRA Development - 0 views
-
Database Schema
-
Generating JIRA database schema information
-
Download the attached plugin: jira-schema-diagram-generator-plugin-1.0.jarInstall the plugin in your JIRA instance by following the instructions on Managing JIRA's Plugins.Go to the JIRA administration console and navigate to System > Troubleshooting and Support > Generate Schema Diagram Keyboard shortcut: g + g + start typing generateEnter the tables/columns to omit from the generated schema information, if desired.If you want to generate a pdf, enter the path to the Graphviz executable.Click Generate Schema.The 'Database Schema' page will be displayed with links to the schema file in txt, dot and pdf format.
Session Management | Apache Shiro - 1 views
-
Session Clustering
-
can cluster Subject sessions natively and never need to worry again about how to cluster sessions based on your container environment
-
if you configure a cluster-capable SessionDAO, the DAO can interact with a clustering mechanism and Shiro's SessionManager never needs to know about clustering concerns
- ...8 more annotations...
Adobe Community: Updated Groovy template for GraniteDS Builder (gas3) - 0 views
-
Updated Groovy template for GraniteDS Builder (gas3)
-
also stripped out the specialized GraniteDS datatypes in favor of the LCDS serialization convention that Adobe uses (i.e. a Java map should translate to an 'Object' type, a Java enum should translate to a 'String', and Java collections should always serialize as 'ArrayCollection')
-
didn't do a 'base' version and a version that doesnt get touched by the code generator, but you could easily do so by modifying this template
- ...3 more annotations...
Building the Agile Database: How to Build a Successful Application Using Agile Without ... - 0 views
-
Building the Agile Database: How to Build a Successful Application Using Agile Without Sacrificing Data Management
Chapter 2. Usage Scenarios - 0 views
-
Client Options
-
client there are two main choices
-
standard Flex RemoteObject API
- ...16 more annotations...
Seam Framework - Why is the constructor invoked twice when a normal scoped bean is crea... - 0 views
-
Why is the constructor invoked twice when a normal scoped bean is created?
-
What you see is the instantiation of two objects: one is the actual bean instance, the other one is the proxy. Both likely invoke the default constructor.
-
That's why it's generally considered a bad idea to do initialization in class construction code. Instead, when using managed beans (objects managed by the EE container) to perform initialisation in a @PostConstruct or @Inject annotated method.
In Relation To... Updated OGM kitchensink example - 0 views
-
jboss-as-maven-plugin to deploy the webapp. Unfortunately, this plugin does not allow me to start and stop the server and it seems redundant to require a local install if the Arquillian tests already download an AS instance (yes, I could run the test against the local instance as well, but think for example continuous integration where I want to manage/control the WHOLE ENVIRONMENT).
-
cargo plugin another go. A lot has happened there and it supports not only JBoss 7.x, but it also offers a so called artifact installer which allows to download the app server as a managed maven dependency.
-
cargo:install in the initialize phase to install the app server into the target directory. This way I can install a custom module (via the gmaven plugin) before the tests get executed and/or before I start the application
‹ Previous
21 - 40 of 95
Next ›
Last »
Showing 20▼ items per page