我是 web 应用程序开发的新手,目前我在工作中分配了一个 web 应用程序,我需要使用 struts2 java 实现完整的日历,我已经显示了它,但我无法将它重定向到一个从数据中获取数据的操作类mySQL 并显示它。请给我指点如何做到这一点,我现在尝试了 8 天,但仍然没有运气。
谢谢!!!
添加的代码:
我知道用于获取 json 提要的事件源的 java/servlet 语法是:
eventSources: [{
url: '/mailexample/calendarevents',
type: 'GET',
dataType: 'json',
}]
截至目前我已经尝试过:
url: 'calanderevents.action',
type: 'GET',
dataType: 'json',
或者
url action: 'calendarevents',
type: 'GET',
dataType: 'json',
或者
url: 'calendarevents',
// where calendar events maps to an action class
type: 'GET',
dataType: 'json',
所有这些似乎都不起作用。请帮忙。