spree

Tiny utilities for SPRing 3 (thREE)

License

License

GroupId

GroupId

com.yo1000
ArtifactId

ArtifactId

spree
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

spree
Tiny utilities for SPRing 3 (thREE)
Project URL

Project URL

https://github.com/yo1000/spree
Source Code Management

Source Code Management

https://github.com/yo1000/spree

Download spree

How to add to project

<!-- https://jarcasting.com/artifacts/com.yo1000/spree/ -->
<dependency>
    <groupId>com.yo1000</groupId>
    <artifactId>spree</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.yo1000/spree/
implementation 'com.yo1000:spree:1.0.0'
// https://jarcasting.com/artifacts/com.yo1000/spree/
implementation ("com.yo1000:spree:1.0.0")
'com.yo1000:spree:jar:1.0.0'
<dependency org="com.yo1000" name="spree" rev="1.0.0">
  <artifact name="spree" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.yo1000', module='spree', version='1.0.0')
)
libraryDependencies += "com.yo1000" % "spree" % "1.0.0"
[com.yo1000/spree "1.0.0"]

Dependencies

compile (5)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-stdlib jar 1.1.51
org.jetbrains.kotlin : kotlin-reflect jar 1.1.51
org.slf4j : slf4j-api jar 1.7.21
org.springframework : spring-beans jar 3.0.0.RELEASE
org.springframework : spring-test jar 3.0.0.RELEASE

test (5)

Group / Artifact Type Version
org.jetbrains.spek : spek-api jar 1.1.5
org.jetbrains.spek : spek-data-driven-extension jar 1.1.5
org.jetbrains.spek : spek-junit-platform-engine jar 1.1.5
org.junit.platform : junit-platform-runner jar 1.0.1
com.nhaarman : mockito-kotlin jar 1.5.0

Project Modules

There are no modules declared in this project.

Spree

Tiny utilities for SPRing 3 (thREE).

JndiPropertyPlaceholderConfigure

Usage is as follows.

context.xml

<Context>
  <Environment name="datasource.password" value="root$password"/>
</Context>

applicationContext.xml

<bean id="propertyConfigure" class="com.yo1000.spree.beans.factory.config.JndiPropertyPlaceholderConfigure">
  <property name="locations" value="classpath:config.properties"/>
  <property name="jndiOverride" value="true"/>
</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  <property name="driverClassName" value="org.postgresql.Driver"/>
  <property name="url" value="jdbc:postgresql://host:port/database"/>
  <property name="username" value="root"/>
  <property name="password" value="${datasource.password}"/>
</bean>

Versions

Version
1.0.0