How does GraphicsMagick differ from ImageMagick?
Group items matching
in title, tags, annotations or urlMaven 3.x Compatibility Notes - 0 views
16More
GraphicsMagick FAQ - 0 views
- ...13 more annotations...
-
GraphicsMagick has been significantly updated to use multiple CPU cores to speed up the image processing
44More
shared by kuni katsuya on 04 Oct 12
- No Cached
Session Management | Apache Shiro - 0 views
shiro.apache.org/session-management.html
java security authentication authorization ApacheShiro SessionManagement session

-
even if you deploy your application in a Servlet or EJB container, there are still compelling reasons to use Shiro's Session support instead of the container's
- ...40 more annotations...
-
allows you to easily configure all session components with any JavaBeans-compatible configuration format, like JSON, YAML
-
If the Subject already has a Session, the boolean argument is ignored and the Session is returned immediately
-
If the Subject does not yet have a Session and the create boolean argument is false, a new session will not be created and null is returned.
-
HttpServletRequest.getSession(boolean create) method:
42More
MySQL & Apache Derby as jdbcRealm for Apache Shiro | Nabil Hachicha - 0 views
-
http://localhost:8080/ShiroDemo/auth/secured.jsp
- ...36 more annotations...
-
Create a new directory “auth” and add a new JSP under it, let’s call it “BackOffice.jsp“
-
<filter-class>05 org.apache.shiro.web.servlet.IniShiroFilter06 </filter-class>
-
10 <filter-mapping>11 <filter-name>ShiroFilter</filter-name>12 <url-pattern>/*</url-pattern>13 </filter-mapping>
-
map the URLs to be protected, all the url under /auth should be authenticated with basic HTTP authentication
-
Add a new directory under src let’s call it production we will create a new shiro configuration file compatible with MySQL
-
13 <jdbc.user>APP</jdbc.user>14 <jdbc.passwd>APP</jdbc.passwd>15 <jdbc.url>jdbc:derby://localhost:1527/shiro_schema</jdbc.url>16 <jdbc.driver>org.apache.derby.jdbc.ClientDriver</jdbc.driver>
-
45 <jdbc.user>ADM</jdbc.user>46 <jdbc.passwd>secret123</jdbc.passwd>47 <jdbc.ds>com.mysql.jdbc.jdbc2.optional.MysqlDataSource</jdbc.ds>48 <jdbc.serverName>localhost</jdbc.serverName>49 <jdbc.databaseName>shiro_schema</jdbc.databaseName>
3More
shared by kuni katsuya on 14 Sep 12
- No Cached
Matrix of supported platforms, runtimes and technologies in JBossTools & JBDS | JBoss T... - 0 views
community.jboss.org/...ndTechnologiesInJBossToolsJBDS
jbosstools eclipse jbossas7 Seam JSF RichFaces compatibility

1More
Getting Started Guide - JBoss AS 7.2 - Project Documentation Editor - 0 views
28More
MySQL :: MySQL 5.7 Reference Manual :: 5.4.4.2 Configurable InnoDB Auto-Increment Locking - 0 views
-
Configurable
-
table-level locks held until the end of a statement make INSERT statements using auto-increment safe for use with
- ...24 more annotations...
-
However, those locks limit concurrency and scalability when multiple transactions are executing insert statements at the same time
-
For INSERT statements where the number of rows to be inserted is known at the beginning of processing the statement, InnoDB quickly allocates the required number of auto-increment values without taking any lock, but only if there is no concurrent session already holding the table-level AUTO-INC lock (because that other statement will be allocating auto-increment values one-by-one as it proceeds)
-
obtains auto-increment values under the control of a mutex (a light-weight lock) that is not held until the statement completes, but only for the duration of the allocation process
-
Auto-increment values are not ensured to be the same on the slaves as on the master if you use innodb_autoinc_lock_mode = 2 (“interleaved”) or configurations where the master and slaves do not use the same lock mode