Skip to content

Commit 8c7e159

Browse files
committed
Change JSR-300 to JSR-330
1 parent 0b2ebbd commit 8c7e159

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

helloworlds/1.1-common-frameworks-and-lib/spring/resources/constructorInject.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
66

77

8-
<bean id="Notifier" class="xml.jsr300.XmlConstructorInject$Notifier">
8+
<bean id="Notifier" class="xml.jsr330.XmlConstructorInject$Notifier">
99
<constructor-arg ref="NotificationService" />
1010
</bean>
1111

12-
<bean id="NotificationService" class="xml.jsr300.XmlConstructorInject$EMailService"></bean>
12+
<bean id="NotificationService" class="xml.jsr330.XmlConstructorInject$EMailService"></bean>
1313

14-
</beans>
14+
</beans>

helloworlds/1.1-common-frameworks-and-lib/spring/src/jsr300/SpringSimpleInject.java renamed to helloworlds/1.1-common-frameworks-and-lib/spring/src/jsr330/SpringSimpleInject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package jsr300;
1+
package jsr330;
22

33

44
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
@@ -8,7 +8,7 @@
88
import javax.inject.Inject;
99

1010
/**
11-
* Hello World using jsr300 annotation
11+
* Hello World using jsr330 annotation
1212
*
1313
* Created by vvedenin on 11/14/2015.
1414
*/

helloworlds/1.1-common-frameworks-and-lib/spring/src/xml/jsr300/XmlConstructorInject.java renamed to helloworlds/1.1-common-frameworks-and-lib/spring/src/xml/jsr330/XmlConstructorInject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package xml.jsr300;
1+
package xml.jsr330;
22

33
import org.springframework.context.support.ClassPathXmlApplicationContext;
44

55
import javax.inject.Inject;
66

77
/**
8-
* Hello World using jsr300 annotation and XML config
8+
* Hello World using jsr330 annotation and XML config
99
*
1010
* Created by vvedenin on 11/14/2015.
1111
*/

helloworlds/1.6-usefull-libraries/dependency_injection/dependency-injection-spring/resources/constructorInject.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
66

77

8-
<bean id="Notifier" class="xml.jsr300.XmlConstructorInject$Notifier">
8+
<bean id="Notifier" class="xml.jsr330.XmlConstructorInject$Notifier">
99
<constructor-arg ref="NotificationService" />
1010
</bean>
1111

12-
<bean id="NotificationService" class="xml.jsr300.XmlConstructorInject$EMailService"></bean>
12+
<bean id="NotificationService" class="xml.jsr330.XmlConstructorInject$EMailService"></bean>
1313

14-
</beans>
14+
</beans>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package jsr300;
1+
package jsr330;
22

33

44
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
@@ -8,7 +8,7 @@
88
import javax.inject.Inject;
99

1010
/**
11-
* Hello World using jsr300 annotation
11+
* Hello World using jsr330 annotation
1212
*
1313
* Created by vvedenin on 11/14/2015.
1414
*/
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package xml.jsr300;
1+
package xml.jsr330;
22

33
import org.springframework.context.support.ClassPathXmlApplicationContext;
44

55
import javax.inject.Inject;
66

77
/**
8-
* Hello World using jsr300 annotation and XML config
8+
* Hello World using jsr330 annotation and XML config
99
*
1010
* Created by vvedenin on 11/14/2015.
1111
*/

0 commit comments

Comments
 (0)