- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我从 gradle 构建成功获取 war 文件后,我部署到 tomcat 容器,这也成功了。但是当我尝试访问 localhost:9999/fdr/test
时,它告诉我 This site can't be reached
我使用的 Tomcat 版本是 apache-tomcat-9.0.22。我已经更改了 build.gradle 文件以在 dependencies
部分下添加 providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
。另外为了让 Tomcat 知道我使用的配置文件,我在 application.properties
中添加了 spring.profiles.active=@activeProfiles@
并且还有 application-dev .properties
在 src\main\resource
文件夹中。我生成war文件的方式是./gradlew -PactiveProfiles=dev clean build
,生成war文件后,我把它放在Tomcat下的webapps
文件夹中,然后启动它
对于build.gradle
plugins {
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
id 'war'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.vincent.wartest'
version = '0.0.1'
sourceCompatibility = '1.8'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
processResources {
filter org.apache.tools.ant.filters.ReplaceTokens, tokens: [
activeProfiles: activeProfiles
]
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation('mysql:mysql-connector-java:8.0.13')
}
结构如下:
V:\IDEA\PHOENIX\SRC
├───main
│ ├───java
│ │ └───com
│ │ └───vincent
│ │ └───wartest
│ │ └───phoenix
│ │ │ lombok.config
│ │ │ PhoenixApplication.java
│ │ │ ServletInitializer.java
│ │ │
│ │ └───controller
│ │ PhoenixController.java
│ │
│ └───resources
│ │ application-dev.properties
│ │ application.properties
│ │
│ ├───static
│ └───templates
└───test
└───java
└───com
└───vincent
└───wartest
└───phoenix
PhoenixApplicationTests.java
由于代码是由 Intellij 自动生成的,它创建了一个名为 ServletInitializer.java
的类,其内容如下
package com.vincent.wartest.phoenix;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(PhoenixApplication.class);
}
}
在com.vincent.wartest.controller
中,它有简单的 Controller 类
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/fdr")
@Slf4j
public class PhoenixController {
@GetMapping(value="/test")
public ResponseEntity<String> test(){
LOGGER.info("Logger test");
return new ResponseEntity<>("First test", HttpStatus.OK);
}
}
预期结果:在tomcat上部署后,访问http://localhost:9999/fdr/test
时,页面应该显示First test
,并响应代码是 200 OK(通过在 Chrome 上检查 F12)
实际结果:当我访问该页面时,我得到 This site can't be reached
via Tomcat is running properly
更新:这是 catalina.out
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.1.6.RELEASE)
2019-07-16 14:27:46.447 INFO 28080 --- [ main] com.itsp.fdr.phoenix.ServletInitializer : Starting ServletInitializer on hospt1 with PID 28080 (C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\phoenix-0.0.1\WEB-INF\classes started by zhibo in C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\bin)
2019-07-16 14:27:46.450 INFO 28080 --- [ main] com.itsp.fdr.phoenix.ServletInitializer : The following profiles are active: dev
2019-07-16 14:27:47.546 INFO 28080 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1037 ms
2019-07-16 14:27:48.074 INFO 28080 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-07-16 14:27:48.437 INFO 28080 --- [ main] com.vincent.wartest.phoenix.ServletInitializer : Started ServletInitializer in 2.559 seconds (JVM running for 5.498)
16-Jul-2019 14:27:48.481 INFO [main] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
16-Jul-2019 14:27:48.508 INFO [main] org.apache.catalina.startup.HostConfig.deployWAR Deployment of web application archive [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\phoenix-0.0.1.war] has finished in [4,388] ms
16-Jul-2019 14:27:48.509 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\docs]
16-Jul-2019 14:27:48.528 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\docs] has finished in [19] ms
16-Jul-2019 14:27:48.528 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\examples]
16-Jul-2019 14:27:48.751 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\examples] has finished in [223] ms
16-Jul-2019 14:27:48.751 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\host-manager]
16-Jul-2019 14:27:48.780 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\host-manager] has finished in [28] ms
16-Jul-2019 14:27:48.780 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\manager]
16-Jul-2019 14:27:48.797 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\manager] has finished in [16] ms
16-Jul-2019 14:27:48.797 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\ROOT]
16-Jul-2019 14:27:48.812 INFO [main] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\ROOT] has finished in [15] ms
16-Jul-2019 14:27:48.815 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-nio-8080"]
16-Jul-2019 14:27:48.823 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["ajp-nio-8009"]
16-Jul-2019 14:27:48.826 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in [4,736] milliseconds
它实际上加载了我的开发配置文件,我配置了 server.port=9999
,所以我预计它会在端口 9999 上启动我的页面。
最佳答案
来自您的日志:
Deployment of web application archive [C:\Users\zhibo\Desktop\apache-tomcat-9.0.22\webapps\phoenix-0.0.1.war] has finished in [4,388] ms
在 tomcat 上,应用程序根上下文以 war 名称命名,在本例中为:phoenix-0.0.1
。所以你的申请将在
http://localhost:9999/phoenix-0.0.1/fdr/test
如果您想将版本保留在上下文路径中,最好将 war 命名为 phoenix##0.0.1.war
。所以你的申请将在
关于spring-boot - 将spring boot项目打包部署成war success with profile,但是访问页面时无法访问页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57063283/
我正在尝试读取和处理一个大的 json 文件(~16G),但即使我通过指定 chunksize=500 读取小块,它仍然有内存错误。我的代码: i=0 header = True for chunk
请看下图... 我想通过 CSS 实现。 我现在将此分隔符用作在我的容器内响应的图像 ( jpg )。问题是我似乎无法准确匹配颜色或使白色晶莹剔透。 我认为 CSS 是解决这个问题的最佳方式。 尺寸为
所以我正在尝试使用 AngularJS 和 Node.js。我正在尝试设置客户端路由,但遇到一些问题。 编辑 所以我改变了一些代码如下 https://github.com/scotch-io/sta
我想创建如下图所示的边框: 这段代码是我写的 Some Text p{ -webkit-transform: perspective(158px) rotateX(338deg); -webk
好的,所以我有一个包含 2 个选项的选择表 $builder->add('type', 'choice', array( 'label' => 'User type', 'choice
我的代码: private void pictureBox1_MouseDown(object sender, MouseEventArgs e) { ngr.
我正在尝试编写 Tic-Tac-Toe 游戏代码,但不知道如何在轮到我时push_back '+' 字符。 因此,每当玩家输入例如“Oben 链接”时,这基本上意味着左上角,我希望游戏检查输入是否正确
我正在研究 HtmlHelper.AnonymousObjectToHtmlAttributes。 它适用于匿名对象: var test = new {@class = "aaa", placehol
在 stackoverflow 上所有这些 mod 重写主题之后,我仍然没有找到我的问题的答案。我有一个顶级站点,基本上我想做的就是将 /index.php?method=in&cat=Half+Li
仅使用 CSS 可以实现此功能区吗? 最佳答案 .box { width: 300px; height: 300px; background-color: #a0a0a0;
我有一个 jbuilder 模板,它用 json 表示我的一个模型,如下所示: json.(model, :id, :field1, :field2, :url) 如果我只是从控制台访问该字段,则 u
昨天我问了一个问题 - Draw arrow according to path 在那个问题中,我解释说我想在 onTouchEvent 的方向上绘制一个箭头。我在评论中得到了答案,说我应该旋转 Ca
我希望段落中的代码与代码块中显示的代码一致。 例如: The formula method for a linear model is lm(y~x, data = dat). For our da
我使用 ViewPager 获得了一个选项卡菜单。每个选项卡都包含来自 android.support.v4 包的 fragment (与旧 SDK 的兼容性)。其中一个 fragment 是 Web
我正在从事一项需要多种程序能力的科学项目。在四处寻找可用的工具后,我决定使用 Boost 库,它为我提供了 C++ 标准库不提供的所需功能,例如日期/时间管理等。 我的项目是一组命令行,用于处理来自旧
外媒 Windows Latest 报道,随着 Windows 10 的不断发展,某些功能会随着新功能的更新而被抛弃或成为可选项。早在 2018 年,微软就确认截图工具将消失,现代的 “截图和草图”
我有标记的 Angular ,我只希望标记旋转到那个 Angular 。 marker = new google.maps.Marker({ position: myL
我一定是遗漏了什么,但我不知道是什么。我有使用 polymer 实现的简单自定义元素: TECK ..
我有一个关于如何设置我们产品的分步教程。我必须在每个步骤中显示大量示例代码。以下是我必须在页面中显示的代码类型列表。我用什么来格式化所有内容? Java 代码示例 XML 样本 iOS SDK 文件(
我需要在我的 iPad 应用程序中绘制一些图表,所以我遵循了本教程: http://recycled-parts.blogspot.com/2011/07/setting-up-coreplot-in
我是一名优秀的程序员,十分优秀!