fix spring-boot module (#2422)

* fix spring config

* fix spring config

* fix spring config

* minor fix

* fix spring-boot module
This commit is contained in:
Doha2012
2017-08-11 22:02:08 +02:00
committed by Eugen
parent 127dd7323d
commit dc3589a7a0
5 changed files with 10 additions and 10 deletions
@@ -9,7 +9,7 @@ import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.ConfigurableEnvironment;
@Configuration
@ComponentScan(basePackages = { "com.baeldung.*" })
@ComponentScan(basePackages = { "com.baeldung.servlets.*" })
@PropertySource("classpath:custom.properties") public class PropertySourcesLoader {
private static final Logger log = LoggerFactory.getLogger(PropertySourcesLoader.class);
@@ -10,11 +10,11 @@ import com.baeldung.autoconfiguration.MySQLAutoconfiguration;
@SpringBootApplication(exclude=MySQLAutoconfiguration.class)
@ComponentScan(basePackages="com.baeldung.utils")
public class Application {
public class UtilsApplication {
@RolesAllowed("*")
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
SpringApplication.run(UtilsApplication.class, args);
}
}
@@ -6,7 +6,7 @@
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<context:component-scan base-package="com.baeldung"/>
<context:component-scan base-package="com.baeldung.servlets"/>
<bean class="com.baeldung.configuration.WebAppInitializer"/>
<bean class="com.baeldung.servlets.configuration.WebAppInitializer"/>
</beans>
@@ -7,7 +7,7 @@
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="com.baeldung"/>
<context:component-scan base-package="com.baeldung.servlets"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>