CDI, JPA2 and JSF2
Group items matching
in title, tags, annotations or urlSmoke and Ice: Say hello to the Seam 3 Environment Configuration module - 0 views
smokeandice.blogspot.ca/...llo-to-seam-3-environment.html
Seam3 environment configuration javaee6 JNDI

13More
Shiro User - Shiro in CDI/JPA2/JSF2 project - 1 views
- ...10 more annotations...
-
Instead of configuring the ShiroFilter in my web.xml I had the IniShiroFilter configured. The IniShiroFilter creates a new SecurityManager from the ini file. This new SecurityManager didn't know about the realm I've added in my EnvironmentLoader, so it didn't have any realms.
-
I replaced it with the ShiroFilter in my web.xml and all seems to be working now with my CdiEnvironmentLoaderListener.
40More
Chapter 10. Integration with CDI - 0 views
- ...37 more annotations...
-
10.1. Configuration with Servlet 3 On Servlet 3 compliant containers, GraniteDS can use the new APIs to automatically register its own servlets and filters and thus does not need any particular Configuration in web.xml. This automatic setup is triggered when GraniteDS finds a class annotated with @FlexFilter in one of the application archives:
-
@FlexFilter(configProvider=CDIConfigProvider.class) public class GraniteConfig { }
-
tide=true, type="cdi", factoryClass=CDIServiceFactory.class, tideInterfaces={Identity.class}
-
It is possible to benefit from even more type safety by using the annotation [Inject] instead of In. When using this annotation, the full class name is used to find the target bean in the CDI context instead of the bean name.
18More
JBoss AS7 Deployment Plugin - Deploy/Undeploy Examples - 0 views
-
<plugin> <groupId>org.jboss.as.plugins</groupId> <artifactId>jboss-as-maven-plugin</artifactId> <version>7.1.1.Final</version> </plugin>
- ...15 more annotations...
-
<configuration> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <name>postgresql.jar</name> </configuration>
-
<domain> <server-groups> <server-group>main-server-group</server-group> </server-groups> </domain>
15More
Application Security With Apache Shiro - 0 views
- ...12 more annotations...
-
'Subject' can mean a human being, but also a 3rd party process, daemon account, or anything similar. It simply means 'the thing that is currently interacting with the software'
-
Realm acts as the ‘bridge’ or ‘connector’ between Shiro and your application’s security data. That is, when it comes time to actually interact with security-related data like user accounts to perform authentication (login) and authorization (access control), Shiro looks up many of these things from one or more Realms configured for an application.
-
Shiro provides out-of-the-box Realms to connect to a number of security data sources (aka directories) such as LDAP, relational databases (JDBC), text configuration sources like INI and properties files, and more
-
A permission is a raw statement of functionality, for example ‘open a door’, ‘create a blog entry’, ‘delete the ‘jsmith’ user’, etc. By having permissions reflect your application’s raw functionality, you only need to change permission checks when you change your application’s functionality. In turn, you can assign permissions to roles or to users as necessary at runtime.
23More
Chapter 16. Extensibilty - 0 views
- ...20 more annotations...
-
If authorization fails, either because the user is not logged in or because it doesn't have required rights, it must throw an appropriate org.granite.messaging.service.security.SecurityServiceException.
-
only one instance of this service is used in the entire web-app and will be called by concurrent threads
-
This method is called upon each and every service method call invocations (RemoteObject) or subscribe/publish actions (Consumer/Producer). When used with RemoteObjects, the authorize method is responsible for checking security, calling the service method, and returning the corresponding result.
8More
MySQL :: MySQL 3.23, 4.0, 4.1 Reference Manual :: 17.3.4.4 Using Character Sets and Uni... - 0 views
- ...5 more annotations...
-
could either be automatically detected from the server configuration, or could be configured by the user through the useUnicode and characterEncoding properties
-
To override the automatically detected encoding on the client side, use the characterEncoding property in the URL used to connect to the server.
8More
MySQL :: MySQL 3.23, 4.0, 4.1 Reference Manual :: 17.3.4.1 Driver/Datasource Class Name... - 0 views
-
useUnicode
-
-
see also: http://www.diigo.com/ditem_mana2/read_ditem?link_id=124285330&url=http%3A%2F%2Fdev.mysql.com%2Fdoc%2Frefman%2F4.1%2Fen%2Fconnector-j-reference-charsets.html if characterEncoding is unspecified, jdbc driver sets it to the character set specified by the mysql system
-
- ...2 more annotations...
-
If 'useUnicode' is set to true, what character encoding should the driver use when dealing with strings? (defaults is to 'autodetect')
-
17More
shared by kuni katsuya on 14 Jun 12
- No Cached
JPA Reference Guide - JBoss AS 7.0 - Project Documentation Editor - 0 views
docs.jboss.org/...JPA+Reference+Guide
jbossas7 jpa reference documentation persistence-unit jpaprovider

-
Should be hibernate3-bundled if Hibernate 3 jars are in the application archive (adapterModule and adapterClass will automatically be set for hibernate3-bundled).
- ...14 more annotations...
-
“org.jboss.as.jpa” logging can be enabled to get the following information: INFO - when persistence.xml has been parsed, starting of persistence unit service (per deployed persistence.xml), stopping of persistence unit service DEBUG - informs about entity managers being injected, creating/reusing transaction scoped entity manager for active transaction TRACE - shows how long each entity manager operation took in milliseconds, application searches for a persistence unit, parsing of persistence.xml
-
To enable TRACE, open the as/standalone/configuration/standalone.xml (or as/domain/configuration/domain.xml) file. Search for <subsystem xmlns="urn:jboss:domain:logging:1.0"> and add the org.jboss.as.jpa category
-
Applications can share the same Hibernate3 (for Hibernate 3.5 or greater) persistence provider by manually creating an org.hibernate:3 module (in the AS/modules folder). Steps to create the Hibernate3 module:
25More
Chapter 4. Remoting and Serialization - 0 views
- ...21 more annotations...
-
Due to the limited capabilities of the ActionScript 3 reflection API than cannot access private fields, it is necessary to create an externalizable AS3 class (implementing flash.utils.IExternalizable and its corresponding externalizable Java class
-
With GraniteDS automated externalization and without any modification made to our bean, we may serialize all properties of the Person class, private or not
-
In order to externalize the Person.java entity bean, we must tell GraniteDS which classes we want to externalize with a
-
externalize all classes named com.myapp.entity.Person by using the org.granite.hibernate.HibernateExternalizer
-
<include annotated-with="javax.persistence.Entity"/> <include annotated-with="javax.persistence.MappedSuperclass"/> <include annotated-with="javax.persistence.Embeddable"/>
-
found in the classloader of the GraniteConfig class, and discover all externalizers (classes that implements the GDS Externalizer interface)
1More
Developer Guide - JBoss AS 7.1 - Project Documentation Editor - 1 views
Data Source Configuration in AS 7 | JBoss AS 7 | JBoss Community - 0 views
3More
Christophe Herreman » Blog Archive » Spring ActionScript at FlexCamp 2008 Bel... - 0 views
-
allows me to switch between different endpoints - different test or production servers for instance - just by specifying the ip and port in an external properties file
-
don't have to specify any compiler arguments that point to the services-config.xml or messaging-config.xml files.
4More
shared by kuni katsuya on 28 Mar 13
- No Cached
Subscribing to Email Notifications of Updates to Confluence Content - Confluence 4.3 - ... - 0 views
confluence.atlassian.com/...+Updates+to+Confluence+Content
confluence notification email configuration

2More
Confluence Data Model - Confluence 4.3 - Atlassian Documentation - 0 views
8More
Quick Start · SpringSource/spring-social Wiki - 0 views
Email Notification Configuration Plugin | Atlassian Marketplace - 0 views
marketplace.atlassian.com/...fluence.extra.encp.encp-plugin
confluence confluence-plugin email ToEvaluate

6More
Fiddler Web Debugger - Decrypting HTTPS traffic with Fiddler2 - 0 views
- ...3 more annotations...
-
A: Yes, if you've configured Fiddler to proxy traffic from a second computer or device, you can decrypt that traffic, with two caveats: