Skip to content

Commit

Permalink
Change JSR-300 to JSR-330
Browse files Browse the repository at this point in the history
  • Loading branch information
adatter1994 committed May 20, 2016
1 parent 0b2ebbd commit 8c7e159
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
Expand Up @@ -5,10 +5,10 @@
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">


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

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

</beans>
</beans>
@@ -1,4 +1,4 @@
package jsr300;
package jsr330;


import org.springframework.context.annotation.AnnotationConfigApplicationContext;
Expand All @@ -8,7 +8,7 @@
import javax.inject.Inject;

/**
* Hello World using jsr300 annotation
* Hello World using jsr330 annotation
*
* Created by vvedenin on 11/14/2015.
*/
Expand Down
@@ -1,11 +1,11 @@
package xml.jsr300;
package xml.jsr330;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import javax.inject.Inject;

/**
* Hello World using jsr300 annotation and XML config
* Hello World using jsr330 annotation and XML config
*
* Created by vvedenin on 11/14/2015.
*/
Expand Down
Expand Up @@ -5,10 +5,10 @@
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">


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

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

</beans>
</beans>
@@ -1,4 +1,4 @@
package jsr300;
package jsr330;


import org.springframework.context.annotation.AnnotationConfigApplicationContext;
Expand All @@ -8,7 +8,7 @@
import javax.inject.Inject;

/**
* Hello World using jsr300 annotation
* Hello World using jsr330 annotation
*
* Created by vvedenin on 11/14/2015.
*/
Expand Down
@@ -1,11 +1,11 @@
package xml.jsr300;
package xml.jsr330;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import javax.inject.Inject;

/**
* Hello World using jsr300 annotation and XML config
* Hello World using jsr330 annotation and XML config
*
* Created by vvedenin on 11/14/2015.
*/
Expand Down

0 comments on commit 8c7e159

Please sign in to comment.