- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Springboot 和 Thymeleaf 显示基因列表。数据库(基因、蛋白质等)和所有方法(例如基因的 getIdentifier)均存在且有效。项目结构为:
我的类/html 文件是:
主要:
package main;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
@SpringBootApplication
@ComponentScan
@EnableAutoConfiguration
public class Main {
public static void main(String[] args) {
SpringApplication.run(Main.class, args);
}
}
应用程序 Controller :
package gui.spring.controller;
import db.admin.DatabaseQuery;
import db.admin.local.DatabaseQueryLocal;
import db.io.FileReader;
import db.sample.Gene;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import java.util.List;
@SpringBootApplication
@Controller
public class ApplicationController {
@RequestMapping(value = "/", method=RequestMethod.GET)
public String root(Model model){
DatabaseQuery query = new DatabaseQueryLocal();
new FileReader(query);
List<Gene> genes = query.getGenes();
model.addAttribute("genes", genes);
return "root";
}
}
root.html:
<!DOCTYPE html>
<html lang="en" xmlns:th="http://thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<th:block th:each="gene:${genes} ">
<p th:text="${gene.getIdentifier()}"></p>
</th:block>
</body>
</html>
pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>1.0.0</modelVersion>
<groupId>SpringBoot</groupId>
<artifactId>biosampledb</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>1.4.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
</dependency>
</dependencies>
</project>
所以,我们在类(class)中已经讲过这一点,遗憾的是,没有对 Springboot/Thymeleaf/Maven 进行解释。我想我已经弄清楚了大部分内容。我想要的期望结果是,在浏览器中调用“localhost:8080”时,会显示基因标识符列表。运行主 atm 后,我收到一个 Whitelabel 错误页面。我希望,这就是解决我的问题所需的全部代码。我忽略/误解了什么?
谢谢:)
这是DatabaseQuery 接口(interface)(已提供)。
package db.admin;
import db.sample.Assay;
import db.sample.Gene;
import db.sample.Protein;
import org.apache.commons.lang3.*;
import java.util.List;
import java.util.Optional;
public interface DatabaseQuery {
List<Assay> getAssays();
List<Gene> getGenes();
List<Protein> getProteins();
void addAssay(Assay assay);
void addGene(Gene gene);
void addProtein(Protein protein);
/**
* Returns all Assays that used a Protein that is associated with the given gene.
*
* @param gene - gene to get the proteins
*
* @return list of associated assays
*/
List<Assay> getAssaysByGene(Gene gene);
/**
* Returns all Proteins that have a measurement above or equal to 'meas' in any Assay
*
* @param meas - threshold value
* @return A list of tuples (Pairs) where the Protein is left and the measured score from the assay is right
*/
List<Pair<Protein, Double>> getAssayResultsByMeas(Double meas);
/**
* Return all Scores and assoc. Assays for a given Protein
*
* @param protein - protein to look up
* @return List of Pairs of assays and results for the given protein on that assay
*/
List<Pair<Assay, Double>> getScores(Protein protein);
/**
* Returns a protein by given identifier. Returns Optinal.empty if there is no protein with this name
*
* @param identifier - id of the protein
* @return Optional protein
*/
Optional<Protein> getProteinByName(String identifier);
/**
* Returns a gene by given identifier. Returns Optinal.empty if there is no gene with this name
*
* @param name - id of a gene
* @return Optional protein
*/
Optional<Gene> getGeneByName(String name);
/**
* Returns a assay by given identifier. Returns Optinal.empty if there is no assay with this name
*
* @param name - id of a gene
* @return Optional protein
*/
Optional<Assay> getAssayByName(String name);
}
DatabaseQueryLocal 类:
package db.admin.local;
import db.admin.DatabaseQuery;
import db.sample.Assay;
import db.sample.Gene;
import db.sample.Protein;
import org.apache.commons.lang3.*;
import org.apache.commons.lang3.tuple.ImmutablePair;
//import org.apache.commons.lang3.tuple.ImmutablePair;
//import org.apache.commons.lang3.tuple.Pair;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
public class DatabaseQueryLocal implements DatabaseQuery {
private final DatabaseLocal db;
public DatabaseQueryLocal() {
this.db = DatabaseLocal.getInstance();
}
@Override
public List<Assay> getAssays(){
return db.assayList;
}
@Override
public List<Gene> getGenes(){
return db.geneList;
}
@Override
public List<Protein> getProteins(){
return db.proteinList;
}
@Override
public void addAssay(Assay assay){
db.assayList.add(assay);
}
@Override
public void addGene(Gene gene){
db.geneList.add(gene);
}
@Override
public void addProtein(Protein protein){
db.proteinList.add(protein);
}
/**
* Returns all Assays that used a Protein that is associated with the given gene.
*
* @param gene - gene to get the proteins
*
* @return list of associated assays
*/
@Override
public List<Assay> getAssaysByGene(Gene gene){
Protein protein = gene.getProtein();
return this.getAssays().stream()
.filter(assay -> assay.getUsedProteins().contains(protein))
.collect(Collectors.toList());
}
/**
* Returns all Proteins that have a measurement above or equal to 'meas' in any Assay
*
* @param meas - threshold value
* @return A list of pairs where the Protein is left and the measured score from the assay is right
*/
@Override
public List<Pair<Protein, Double>> getAssayResultsByMeas(Double meas){
List<Pair<Protein, Double>> results = new ArrayList<>();
for(Assay assay: getAssays()){
List<Double> measurements = assay.getMeasurements();
List<Protein> proteins = assay.getUsedProteins();
for (int i = 0; i < measurements.size(); i++) {
Double m = measurements.get(i);
if(m >= meas){
//results.add(new ImmutablePair<Protein,Double>(proteins.get(i), m));
results.add(new Pair<>(proteins.get(i), m));
}
}
}
return results;
}
/**
* Return all Scores and assoc. Assays for a given Protein
*
* @param protein - protein to look up
* @return List of Pairs of assays and results for the given protein on that assay
*/
@Override
public List<Pair<Assay, Double>> getScores(Protein protein) {
List<Pair<Assay, Double>> results = new ArrayList<>();
for (Assay assay : getAssays()) {
List<Double> measurements = assay.getMeasurements();
List<Protein> proteins = assay.getUsedProteins();
for (int i = 0; i < proteins.size(); i++) {
if (proteins.get(i).equals(protein)) {
results.add(new Pair<>(assay, measurements.get(i)));
//results.add(new ImmutablePair<Assay,Double>(assay, measurements.get(i)));
// http://www.javased.com/index.php?api=org.apache.commons.lang3.tuple.Pair
// https://www.programcreek.com/java-api-examples/?api=org.apache.commons.lang3.tuple.ImmutablePair
}
}
}
return results;
}
/**
* Returns a protein by given identifier. Returns Optional.empty if there is no protein with this name
*
* @param identifier - id of the protein
* @return Optional protein
*/
@Override
public Optional<Protein> getProteinByName(String identifier){
Optional<Protein> r = this.getProteins().stream().filter(p -> p.getIdentifier().equals(identifier)).findFirst();
if(!r.isPresent()){
System.err.println("DBQueryLocal: could not find protein by name: " + identifier);
}
return r;
}
/**
* Returns a gene by given identifier. Returns Optional.empty if there is no gene with this name
*
* @param name - id of a gene
* @return Optional protein
*/
@Override
public Optional<Gene> getGeneByName(String name){
return this.getGenes().stream().filter(p -> p.getIdentifier().equals(name)).findFirst();
}
/**
* Returns a assay by given identifier. Returns Optional.empty if there is no assay with this name
*
* @param name - id of a gene
* @return Optional protein
*/
@Override
public Optional<Assay> getAssayByName(String name){
return this.getAssays().stream().filter(p -> p.getName().equals(name)).findFirst();
}
}
来自 IntelliJ 的执行日志。当出现最后三行时在浏览器中调用“localhost:8080”。随后使用停止按钮手动终止进程。
最佳答案
模板的默认 thymeleaf 前缀(它是属性:spring.thymeleaf.prefix)是:classpath:/templates/
如果你将 root.html 移至 src/main/resources/templates,如果我没有错过任何其他内容,它应该可以工作。
关于java - Springboot : Localhost:8080 results in Whitepage-Error instead of showing content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51520924/
SpringBoot-Admin 服务监控 简单介绍 Spring Boot Actuator 是 Spring Boot 自带的一个功能模块, 提供了一组已经开箱即用的生产环境下常用
我想查找通过关键字匹配字段 nameEnglish 或 nameChinese 的模型列表。我花了一个多小时谷歌搜索但我做不到。请帮忙。 Springboot Mongo 入门示例 https://s
(请注意:在调查 this issue 时,我更好地发现了我在此处介绍的问题根源) 我对 Hibernate 和 SpringBoot 非常陌生。我的项目涉及一个搜索引擎,其中索引(javafx 客户
我最近有一个 Web 应用程序从 springboot 升级到 springboot 2。当我将其部署到 Tomcat 8 时,它似乎启动了,但没有完全启动。 在 localhost.2019-09-
我是 Spring boot 的新手...我在运行 Controller 时遇到问题, Description: Field todoService in com.springboot.todoCon
我有一个SpringBoot应用程序,它使用以下配置与PostgreSQL通信,通过AWS Beanstrik部署:。在我将AWS Aurora证书更新为rds-ca-ecc384-g1之前,一切都很
24年11月6日消息,阿里巴巴旗下的Java Excel工具库EasyExcel近日宣布,将停止更新,未来将逐步进入维护模式,将继续修复Bug,但不再主动新增功能。 EasyExcel 是一款知名的
@SpringBootApplication @SpringBootApplication看作是 @Configuration、@EnableAutoConfiguration、@Component
引入 先看SpringBoot的主配置类 @SpringBootApplication public class DemoApplication{ public static void m
雪花算法的唯一性,在单个节点中是可以保证的,对应kubernetes中的应用,如果是横向扩展后,进行多副本的情况下,可能出现重复的ID,这需要我们按着pod_name进行一个workId的生成,我还是
实在是不知道标题写什么了 可以在评论区给个建议哈哈哈哈 先用这个作为标题吧 尝试使用 国内给出的 AI 大模型做出一个 可以和 AI 对话的 网站出来 使用 智普AI 只能 在控制
一、介绍 在实际的软件系统开发过程中,由于业务的需求,在代码层面实现数据的脱敏还是远远不够的,往往还需要在数据库层面针对某些关键性的敏感信息,例如:身份证号、银行卡号、手机号、工资等信息进行加密存储
Selenium Selenium是一个用于Web应用程序自动化测试的开源工具套件。它主要用于以下目的: 浏览器自动化:Selenium能够模拟真实用户在不同浏览器(如Chrome、Fire
一、简介 在实际的项目开发过程中,经常需要用到邮件通知功能。例如,通过邮箱注册,邮箱找回密码,邮箱推送报表等等,实际的应用场景非常的多。 早期的时候,为了能实现邮件的自动发送功能,通常会使用 Ja
SpringBoot:基于redis自定义注解实现后端接口防重复提交校验 一、添加依赖 org.springframework.boot spring
SpringBoot:使用Jackson完成全局序列化配置 一、测试准备 com.fasterxml.jackson.core jackson-cor
springboot:整合rocketmq 一、简易消息操作 生产者整合mq 导入依赖 org.springframework.boot
springboot:常用注解 一、spring常用注解 包扫描+组件标注注解 @Component:泛指各种组件 @Controller、@Service、@Repository都可以称为@Comp
我们经常需要在两个系统之间进行一些数据的交互,这时候我们就需要开发数据交互接口。 一般来说,遇到比较多的接口有HTTP接口、WebService接口、FTP文件传输。今天我要来学习一下在SpringB
背景 近期项目上线,甲方要求通过安全检测才能进行验收,故针对扫描结果对系统进行了一系列的安全加固,本文对一些常见的安全问题及防护策略进行介绍,提供对应的解决方案 跨站脚本攻击 XSS常发生于论坛评论等
我是一名优秀的程序员,十分优秀!