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
Testing 123 |
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> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-clean-plugin</artifactId> | |
<version>2.4.1</version> | |
<configuration> | |
<excludeDefaultDirectories>true</excludeDefaultDirectories> | |
<filesets> | |
<fileset> | |
<directory>${project.build.directory}</directory> | |
<includes> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> | |
<context:annotation-config/> | |
<context:component-scan base-package="com.company.app" /> | |
<context:property-placeholder system-properties-mode="FALLBACK" | |
location="classpath:META-INF/dev.runtime.properties" /> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> | |
<context:annotation-config/> | |
<context:component-scan base-package="com.company.app" /> | |
<context:property-placeholder location="classpath:META-INF/dev.runtime.properties" /> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:jee="http://www.springframework.org/schema/jee" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd"> | |
<jee:jndi-lookup id="echoDataSource" jndi-name="${echoDataSource}" /> | |
<jee:jndi-lookup id="pavDataSource" jndi-name="${pavDataSource}" /> | |
<jee:jndi-lookup id="advertOdsDataSource" jndi-name="${advertOdsDataSource}" /> | |
<jee:jndi-lookup id="sortedOdsDataSource" jndi-name="${sortedOdsDataSource}" /> | |
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
####<Feb 17, 2012 11:42:53 AM EST> <Warning> <HTTP> <server> <spaServer01> <[ACTIVE] ExecuteThread: '62' for queue: 'weblogic.kernel. | |
Default (self-tuning)'> <<WLS Kernel>> <> <> <1329496973873> <BEA-101162> <User defined listener org.springframework.web.context.ContextLoaderListener failed | |
: org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'pavDataSource' defined in null: Cannot convert value [we | |
blogic.jdbc.common.internal.RmiDataSource@320a123] from source type [RmiDataSource] to target type [String]. | |
org.springframework.beans.factory.BeanDefinitionStoreException: Invalid bean definition with name 'pavDataSource' defined in null: Cannot convert value [webl | |
ogic.jdbc.common.internal.RmiDataSource@320a123] from source type [RmiDataSource] to target type [String] | |
at org.springframework.beans.factory.config.PlaceholderConfigurerSupport.doProcessProperties(PlaceholderConfigurerSupport.java:209) | |
at org.springframework.context.support.PropertySource |
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
echoDataSource=EchoDataSource | |
pavDataSource=pavDataSource | |
advertDataSource=AdvertOdsDataSource | |
sortedOdsDataSource=SortedOdsDataSource |
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
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
*.pbxproj -crlf -diff -merge |
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> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
... | |
<configuration> | |
<archive> | |
<manifest> | |
<mainClass>com.whatever...</mainClass> | |
</manifest> | |
</archive> |
OlderNewer