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
Get-Content .\FILENAME -Wait |
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.project.class.dir = "target/classes" | |
grails.project.test.class.dir = "target/test-classes" | |
grails.project.test.reports.dir = "target/test-reports" | |
grails.project.war.file = "target/${appName}-${appVersion}.war" | |
grails.project.dependency.resolution = { | |
// inherit Grails' default dependencies | |
inherits("global") { | |
// uncomment to disable ehcache | |
// excludes 'ehcache' | |
} |
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
Default WebLogic Username/Password | |
11: weblogic/weblogic | |
10: weblogic/welcome1 |
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
IF NOT EXIST C:\opt\java\current\NUL GOTO NOWINDIR | |
rmdir C:\opt\java\current | |
:NOWINDIR | |
mklink /J C:\opt\java\current C:\opt\java\jdk1.6.0_26 |
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
package com.limited.ss.item | |
import org.springframework.context.ApplicationContext | |
import org.springframework.context.ApplicationContextAware | |
import grails.converters.* | |
class TestService implements ApplicationContextAware { | |
static transactional = false |
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
SELECT | |
DISTINCT thing1, (select count(B.thing1) from table1 B where A.thing1 = B.thing1) as mycount | |
FROM | |
table1 A | |
INNER JOIN | |
table2 E on A.table2s_id = e.table2_id | |
WHERE | |
( e.bool = 0 ) | |
GROUP BY | |
A.thing1 |
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
import org.springframework.context.ApplicationContext; | |
import org.springframework.context.ApplicationContextAware; | |
class XMLExample implements ApplicationContextAware { | |
def applicationContext | |
/** | |
* <?xml version="1.0" encoding="UTF-8"?> | |
* <elementNames> | |
* <elementName id="UniqueIDInXMLFile" bar="baz" /> |
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
IF NOT EXIST C:\opt\java\current\NUL GOTO NOWINDIR | |
rmdir C:\opt\java\current | |
:NOWINDIR | |
mklink /J C:\opt\java\current C:\opt\java\jdk1.6.0_26 |
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
select * from v$version where banner like 'Oracle%'; |
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
<plugin> | |
<!-- mvn tomcat6:run --> | |
<!-- http://tomcat.apache.org/maven-plugin-2.0-SNAPSHOT/run-mojo-features.html Fixed version --> | |
<groupId>org.apache.tomcat.maven</groupId> | |
<artifactId>tomcat6-maven-plugin</artifactId> | |
<!-- or if you want to use tomcat 6.x <artifactId>tomcat6-maven-plugin</artifactId> --> | |
<version>2.0-beta-1</version> | |
<configuration> | |
<!-- http port --> | |
<port>9180</port> |
OlderNewer