- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有两个问题:
我不知道如何使用 angularJS 在 html 页面中调用 java 类函数。
我需要在使用按钮后将其禁用。
我的地址是这样的:http://localhost:8080/CreditCardWEB/rest/cc/init
我的类里面有这个:
CardBean.java
@GET
@Path("/init")
public void init() {
Student s = new Student(1, "Pera", "Peric");
em.persist(s);
s = new Student(2, "Pera2", "Peric2");
em.persist(s);
s = new Student(3, "Pera3", "Peric3");
em.persist(s);
}
在我的indexStud.html页面中,我有一个按钮:
<button ng-click="initStud()">Init Student</button>
在我的controllers.js中我遇到了问题,但我不知道该怎么做:
$scope.initStud = function() {
//call the function from Cardbean.java
//disable the button after he is used
}
最佳答案
好的,我找到了问题 1 的答案......这就是它
$scope.initStud = function() {
$http.post('http://localhost:8080/CreditCardWEB/rest/cc/init').success(
function(data) {
});
}
controllers.js 文件中需要的并且 Cardbean.java 文件中第一行的 @GET 必须更改为 @POST
关于java - 从 Sessionbean 调用函数并使用 angularjs 填充表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40469135/
我试图在我的页面中保持 SessionBean 作用域,为此,我遵循了此处的一些教程,实际上,我试图通过 ExternalContext 获取 session ,如以下代码: public class
我正在使用带有 CDI 的 JSF 2 和 GlassFish Server 4(导入 javax.enterprise.context...)。我试图将 SessionBean A 注入(injec
我有两个问题: 我不知道如何使用 angularJS 在 html 页面中调用 java 类函数。 我需要在使用按钮后将其禁用。 我的地址是这样的:http://localhost:8080/Cred
我说的对吗,@TransactionManagement(TransactionManagementType.BEAN) 与 SessionBean 上的任何 @TransactionAttribut
我使用带有 MQ 系列的 Websphere Application Server 8 作为消息队列。 当我在“postConstruct”方法中打开关闭 session bean 中的连接并在另一个
我对创建EJB感到困惑 我在 Internet 上看到过很多 EJB 示例,也看到过使用 SessionBean 、 EJBObject 和 EJBHome 接口(interface)开发 EJB 的
我有一个带有模块的 EAR: foo-api.jar foo-impl.jar 拦截器.jar 在 foo-api 中有: @Local FooService // (interface of a l
他们真的很像。 我知道一个是 View ,一个是 EJB,但据我所知,行为几乎相同。 最佳答案 我觉得你在某个地方感到困惑。在 JSF 2.1 或 EJB 3.1 中没有任何名为 @SessionBe
我是一名优秀的程序员,十分优秀!