Intellij搭建springmvc常见问题解决方案

注意是maven的webapp:

Intellij搭建springmvc常见问题解决方案_第1张图片

Intellij搭建springmvc常见问题解决方案_第2张图片

选择maven下一步下一步。

maven下载过慢在setting中加入镜像。 我也有疑问这是什么鬼格式,但是证明,格式不用调整,直接粘贴进去:



   
    nexus-aliyun
   
  
  *
  
  
    Nexus aliyun
  
  
    http://maven.aliyun.com/nexus/content/groups/public
  

我在这里踩了一个特郁闷的坑,注意看这里,没有package war, 这里有毒,导致我的tomcat一直加不进去artifacts

Intellij搭建springmvc常见问题解决方案_第3张图片

暂时就是这个鬼样子的结构,手动补全结构,

Intellij搭建springmvc常见问题解决方案_第4张图片

调整一下包:

Intellij搭建springmvc常见问题解决方案_第5张图片

加入和pom中的依赖 和 web.xml和 springmvc.xml

注意这里别丢了 pom:

Intellij搭建springmvc常见问题解决方案_第6张图片

pom.xml:



  4.0.0

  com.shishi
  mymvc
  1.0-SNAPSHOT
  war

  
    UTF-8
    1.7
    1.7
    5.2.8.RELEASE
  

  
    
      org.springframework
      spring-context
      ${spring-version}
    
    
      org.springframework
      spring-webmvc
      5.2.8.RELEASE
    
    
      commons-logging
      commons-logging
      1.2
    
    
      junit
      junit
      4.11
      test
    
    
      javax.servlet
      javax.servlet-api
      4.0.0
      provided
    
    
      javax.servlet
      jstl
      1.1.1
    
    
      taglibs
      standard
      1.1.1
    
  

web.xml:



  
  
    SpringMVC
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath:SpringMVC.xml
    
    1
  
  
    SpringMVC
    /
  

springmvc.xml:




  
  
    
    
  
  
  
  

这已经是很精简版的了。

Intellij搭建springmvc常见问题解决方案_第7张图片

配置tomcat, 我在这里遇到了问题,记录详细点:

Intellij搭建springmvc常见问题解决方案_第8张图片

Intellij搭建springmvc常见问题解决方案_第9张图片

Intellij搭建springmvc常见问题解决方案_第10张图片

Intellij搭建springmvc常见问题解决方案_第11张图片

Intellij搭建springmvc常见问题解决方案_第12张图片

Intellij搭建springmvc常见问题解决方案_第13张图片

(上面删除了mymvc:war也是可以的。图就懒得替换了。)

ok

启动tomcat成功:

Intellij搭建springmvc常见问题解决方案_第14张图片

而且注意这里不要用http://localhost:8080/ 去试,会404.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(Intellij搭建springmvc常见问题解决方案)