我正在开发一个项目,它不是Spring boot,而是spring mvc。我的意思是,我的项目中没有这个类:
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
spring mvc的配置文件有以下三个类:
@Import(WebSocketConfig.class)
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "......")
public class MainConfiguration extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/Content/**")
.addResourceLocations("/Content/");
registry.addResourceHandler("/Scripts/**")
.addResourceLocations("/Scripts/");
}
@Bean
public InternalResourceViewResolver viewResolver() {
InternalResourceViewResolver viewResolver
= new InternalResourceViewResolver();
viewResolver.setPrefix("/");
viewResolver.setSuffix(".jsp");
return viewResolver;
}
}
第二:
public class MainInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {
public static HashMap<String, String> response_code = new HashMap<String, String>();
@Override
protected Class<?>[] getRootConfigClasses() {
return new Class[] { MainConfiguration.class,
WebSocketConfig.class};
}
@Override
protected Class<?>[] getServletConfigClasses() {
return null;
}
@Override
protected String[] getServletMappings() {
return new String[] { "/" };
}
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
super.onStartup(servletContext);
Security.addProvider(new BouncyCastleProvider());
servletContext.addListener(new MainContextListener());
System.out.println("MainInitializer.onStartup()");
}}
第三,
public class MainContextListener implements ServletContextListener {
public void contextInitialized(ServletContextEvent servletContextEvent) {
System.out.println("Context Initialized");
Security.addProvider(new BouncyCastleProvider());
}
public void contextDestroyed(ServletContextEvent servletContextEvent) {
System.out.println("Shutting down!");
}
}
为什么连我的项目都不是spring boot项目,需要spring boot starter家长?我认为下面的代码与spring boot相关,因为我的项目不是spring boot,而是spring mvc,所以不需要它。但如果不在pom中添加以下代码,则会出现问题:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.1.RELEASE</version>
</parent>
发布于 2018-06-01 05:38:56
Spring Boot提供了许多“启动器”,允许您将jars添加到类路径中。对于ex。spring-boot- starter -security,spring-boot-starter-web等。"spring-boot-starter-parent“是一个特殊的启动器,它提供了有用的Maven默认值,即它自动添加所有必需的jars和其他东西。它还提供了一个依赖项管理部分,以便您可以省略在pom.xml中使用的依赖项的版本标记。对于ex。假设你想创建带有spring boot的web应用程序,所以你需要添加以下内容。
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
现在请注意这里省略了标记。所以最终"spring-boot-starter-parent“默认添加了这么多东西,所以我们不需要担心这些东西。
发布于 2017-04-10 08:05:18
它为CHILD POM
s提供了通用配置的位置。
Dependencies
和Properties
对于e.g.
,此处是父POM configuration 1.4.2.RELEASE
spring-boot-dependencies
,它是spring-boot-starter-parent
的父项
<properties>
<activemq.version>5.13.4</activemq.version>
<antlr2.version>2.7.7</antlr2.version>
<appengine.version>1.9.44</appengine.version>
<artemis.version>1.3.0</artemis.version>
<aspectj.version>1.8.9</aspectj.version>
<assertj.version>2.5.0</assertj.version>
<atomikos.version>3.9.3</atomikos.version>
<bitronix.version>2.1.4</bitronix.version>
<caffeine.version>2.3.4</caffeine.version>
child POM
的通用属性
<dependencyManagement>
<dependencies>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>1.4.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<type>test-jar</type>
<version>1.4.2.RELEASE</version>
</dependency>
<dependency>
儿童的常见依赖项
发布于 2017-12-26 10:44:17
如果你能提供更多的信息,比如你的pom完整性,我们可以进一步了解和帮助你。
另一方面,父pom spring-boot-starter-parent包含完整的依赖项(mvc、缓存、jpa)和commons属性,以保持依赖项版本的良好一致性,以便在项目或/和子模块中使用。
基本上,您可以根据需要在pom.xml中添加一些启动器(web、jpa、batch……)对于您的示例,您可以只将starter mvc添加到您的pom.xml中,而无需添加其他依赖项,因此您的pom.xml可以如下所示:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
https://stackoverflow.com/questions/43305016
复制