I have Tomcat installed and it's working when I open a browser. I want to know that can I run a Java EE Spring MVC project without using Eclipse.
相关问题
- Eclipse and Mylyn : how to disable grey files in t
- Tomcat and SSL Client certificate
- Installing Pydev for Eclipse throws error
- Error in Scala Compiler: java.lang.AssertionError:
- How to remove unused imports using Eclipse and not
相关文章
- Tomcat的User信息可以存储到数据库中吗?
- tomcat的server.xml支持从Oracle中获取数据吗?
- spring-mvc a标签带参怎样向controller发送请求。路径格式?
- web项目,Resonse Header发生解析错误,请大牛帮忙看看究竟是哪里的问题?
- Apache+Tomcat+JK实现的集群,如果Apache挂了,是不是整个服务就挂了?
- linux环境部署jpress,创建数据库时提提示连接失败
- selenium+eclipse 打开网页时报错
- Java spring framework - how to set content type?
You need to create a
.war
file (for example, usingExport -> WAR file
) and deploy it in Tomcat (via web interface of Tomcat Manager or by placing that file intowebapps
subfolder of Tomcat).