This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ primefaces setup | |
Which version of Primefaces? | |
1 - [Primefaces 2.2.1] | |
2 - [Primefaces 3.0] | |
? Choose an option by typing the number of the selection: 2 | |
Wrote C:\Development\primefaces_test\hellmann\hellmann\pom.xml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A helper method to determine if the Faces Servlet is defined in the web.xml | |
* | |
* @param descriptor | |
* @return true if the Faces Servlet is defined, false otherwise | |
*/ | |
private boolean isFacesServletDefined(WebAppDescriptor descriptor) { | |
// TODO: When WebAppDescriptor.getServlets is implemented: | |
List<ServletDef> servlets = descriptor.getServlets(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
X-Envelope-From: <[email protected]> | |
X-Envelope-To: <[email protected]> | |
X-Delivery-Time: 1410834513 | |
X-UID: 121 | |
Return-Path: <[email protected]> | |
Authentication-Results: strato.com 1; | |
spf=pass | |
smtp.mailfrom="[email protected]"; | |
dkim=pass | |
header.d=info-emailer.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo update-alternatives --install "/usr/bin/java" "java" "/usr/local/java/jdk1.8.0_20/bin/java" 1 | |
sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/local/java/jdk1.8.0_20/bin/javac" 1 | |
sudo update-alternatives --install "/usr/bin/javaws" "javaws" "/usr/local/java/jdk1.8.0_20/bin/javaws" 1 | |
sudo update-alternatives --install "/usr/bin/jar" "jar" "/usr/local/java/jdk1.8.0_20/bin/jar" 1 | |
sudo update-alternatives --set "java" "/usr/local/java/jdk1.8.0_20/bin/java" | |
sudo update-alternatives --set "javac" "/usr/local/java/jdk1.8.0_20/bin/javac" | |
sudo update-alternatives --set "javaws" "/usr/local/java/jdk1.8.0_20/bin/javaws" | |
sudo update-alternatives --set "jar" "/usr/local/java/jdk1.8.0_20/bin/jar" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get install nodejs | |
sudo npm install -g bower | |
npm install -g grunt-cli | |
npm install -g yo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--Eine Kopie der existierenden Datenbank anlegen | |
CREATE DATABASE destinationDB WITH TEMPLATE sourceDB OWNER owner; | |
--Eine Zahlentyp als Zeichentyp ausgeben | |
select cast(i as text) from test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Grails files | |
*.iws | |
*Db.properties | |
*Db.script | |
*.log | |
/*DB.* | |
*.db | |
/cobertura.ser | |
.DS_Store | |
/target/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This is a directory/file filter template for WinMerge | |
name: Java Filter | |
desc: Filters all other files out | |
## This is an exclusive filter | |
## (it lets through only matching files) | |
def: exclude | |
f: \.java$ ## Java files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This is a directory/file filter template for WinMerge | |
name: SVN Filter | |
desc: Filter for SVN internal folders | |
d: \\.svn$ | |
d: \\._svn$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Jun 16, 2015 9:38:46 AM org.springsource.loaded.jvm.JVM copyMethod | |
SCHWERWIEGEND: Problems copying method. Incompatible JVM? | |
java.lang.reflect.InvocationTargetException | |
at sun.reflect.GeneratedMethodAccessor98.invoke(Unknown Source) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:497) | |
at org.springsource.loaded.jvm.JVM.copyMethod(JVM.java:134) | |
at org.springsource.loaded.ri.OriginalClassInvoker.createJavaMethod(OriginalClassInvoker.java:68) | |
at org.springsource.loaded.ri.ReflectiveInterceptor.jlClassGetMethods(ReflectiveInterceptor.java:168) | |
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source) |