gpt4 book ai didi

java - 在 Tapestry 中使用自定义创建的组件

转载 作者:太空宇宙 更新时间:2023-11-04 13:47:51 25 4
gpt4 key购买 nike

我最近开始学习Tapestry框架。我正在遵循有关创建自定义组件并在代码中使用它的书籍示例。由于某种原因,组件中的文本没有显示(我只看到 hello world 文本)。这是 .java 和 tml 文件:

public class Index
{
public Index() {

}

public String getHello()
{
return "Hello world!";
}
}

索引tml:

<html xmlns:t="http://tapestry.apache.org/schema/
tapestry_5_3.xsd">
<head>
<title>Tapestry 5 Book</title>
</head>
<body>
<t:MyComponent/>

<h1> ${hello} </h1>


</body>
</html>

MyComponent.java

public class MyComponent {

public String getStuff()
{
return "Random stuff";
}
}

MyComponent.tml

<span> ${stuff} </span>

我还想说,.java 文件位于其相应的包中(main/java 中的页面和组件...),.tml 文件位于其相应的资源包中。我的问题是,为什么组件文本没有显示?

最佳答案

对我来说一切看起来都很好,所以这实际上只是绝对验证 MyComponent.tml 是否位于正确位置并且在运行时在类路径上可见的情况。例如,这可能是 IDE 配置问题。

对于组件类 org.example.MyComponent,典型位置是 src/main/resources/org/example/MyComponent.tml,但您必须确保您的 IDE 正在导出 src/main/resources 内的文件。

关于java - 在 Tapestry 中使用自定义创建的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30646146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com