JRuby on Rails:在 Rails 应用程序中使用自定义 Java 类
我刚刚开始使用 JRuby on Rails,并且非常喜欢它。我知道如何在我的 Rails 应用程序中使用 Java API 中的当前类,但如果我想创建一个用纯 Java 代码编写的新自定义类,我如何在我的 Rails 应用程序中使用它?
例如,假设我创建了 Dog.java:
class Dog {
private String name;
public Dog() {
name = "Fido";
}
public String getName() {
return name;
}
}
我如何能够在我的 Rails 应用程序中创建一个新的 Dog 对象 (Dog.new)?我需要将 Dog.java 或 Dog.class 文件放在某处,然后调用某种形式的“导入”将其导入到我的 Rails 应用程序中。我不知道它应该放在目录结构中的哪个位置,也不知道应该在哪里以及如何告诉我的应用程序如何包含它。
I just started with JRuby on Rails and absolutely love it. I know how to use current classes within the Java API in my Rails app, but if I wanted to create a new custom class written in purely Java code, how would I be able to use it in my Rails app?
For example, let's say I created Dog.java:
class Dog {
private String name;
public Dog() {
name = "Fido";
}
public String getName() {
return name;
}
}
How would I be able to create a new Dog object (Dog.new) in my Rails app? I need to put the Dog.java or Dog.class file somewhere, and then call some form of "import" to import it into my Rails app. I have no idea where this should go in the directory structure nor do I know where and how I should tell my app how to include it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要一些东西。
编译类。
将
类
添加到Rails应用程序的类路径中(例如初始化程序)。导入类。
如果您想使用 Warbler 为 Rails 应用程序创建一个 war 文件,您还可以使用
中的
,并且 Dog 类无需添加到config.dirs
选项将classes
目录添加到 war 文件中。 config/warble.rb$CLASSPATH
即可使用,因为 Java 约定将 WEB-INF/classes 添加到 Java 中的类路径中网络应用程序。You'll need a couple things.
Compile the class.
Add
classes
to the classpath in your Rails application (an initializer for example).Import the class.
If you want to make a war file of your Rails app with Warbler, you could also add the
classes
directory to the war file using theconfig.dirs
option inconfig/warble.rb
, and the Dog class will be available without having to add to$CLASSPATH
because of the Java convention that WEB-INF/classes be added to the classpath in a Java web application.