解决:我将应用程序从spring-boot转换为标准spring mvc,现在可以正常工作了。感谢所有试图提供帮助的人。仍不确定问题是什么,但我现在已经开始工作了。
我正在尝试将webapps部署到tomcat 7.这些应用程序是使用spring-boot构建的,并使用maven打包。
我将战争放在webapps文件夹中,并且已成功部署:
2015年7月31日下午1:22:05 org.apache.catalina.startup.HostConfigdeployWAR
信息:部署Web应用程序存档/var/lib/tomcat7/webapps/application.war
2015年7月31日下午1:22:09 org.apache.catalina.startup.HostConfig deployWAR
信息:部署Web应用程序存档/var/lib/tomcat7/webapps/Application.war
2015年7月31日下午1:22:10 org.apache.catalina.startup.HostConfig deployDirectory
信息:部署Web应用程序目录/ var / lib / tomcat7 / webapps / ROOT
2015年7月31日下午1:22:11 org.apache.coyote.AbstractProtocol start
信息:启动ProtocolHandler [“http-bio-8080”]
2015年7月31日下午1:22:11 org.apache.catalina.startup.Catalina开始
信息:服务器启动时间为6796毫秒
但是,当我尝试通过浏览器访问它时,我收到一条404消息(请求的资源不可用。)。我可以看到ROOT索引并进入管理器应用程序,在那里它们被正确识别为Spring MVC,我被告知它们已经部署并运行。单击管理器中的链接会给出相同的结果。 catalina.out并没有告诉我任何事情。在服务器启动消息之后,它不再向我提供信息。
编辑更多信息 这是应用程序的web.xml
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name>Spring MVC Application</display-name>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
控制器处理索引请求:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/")
/**
* Default Controller.
*/
class HelloController {
/**
* Implementation of logging interface in SL4J.
*/
private static final Logger LOGGER = LoggerFactory.getLogger
(HelloController.class);
/**
* Constructs a new Hello Controller
*/
public HelloController() {
LOGGER.trace("Created hello controller");
}
/**
* Prints the message on the screen
* @param model the model to add the message too
* @return a String
*/
@RequestMapping(method = RequestMethod.GET)
public String printWelcome(final ModelMap model) {
model.addAttribute("message", "Hello world!");
return "hello";
}
}
我尝试访问的网址是http://localhost:8080/application/和http://localhost:8080/Application/
我也在Tomcat 8中尝试过它并得到同样的问题。我尝试复制ROOT文件夹并将副本重命名为应用程序,并可以访问该文件。似乎是战争的东西?
答案 0 :(得分:0)
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
尝试使用最新的网络应用版本,并确保仔细检查拼写或缺少标签。
答案 1 :(得分:0)
It seems like the application is deployed under ROOT context. This will be the case if the context path is empty string. for ex:
<Context path="" docBase="${catalina.home}/webapps/application.war" >
So your application should be available on "http:localhost:8080/". If you want the application to be available on "http:localhost:8080/applicaiton" then there are 2 ways:
If you are defining "<Context>
" element in server.xml, then define it as :<Context path="/application" docBase="${catalina.home}/webapps/application.war">
As per below documentation, you need to add a context xml by name "application.xml" in your host directory of the server.For ex - "{catalina.base}/conf/Catalina/localhost/application.xml
"
https://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Naming