如何实现NashornScriptEngine?

时间:2015-10-11 11:53:00

标签: java java-8 nashorn

在我正在进行的项目中,我们将使用Nashorn,因此我需要创建此脚本引擎。任何人都可以建议,创建NashornScriptEngine涉及哪些步骤?请指明步骤。

1 个答案:

答案 0 :(得分:0)

以下示例: 您可以按照我的示例@github https://github.com/jamesmedice/Spring-boot---React-js

class UserController extends Controller
{
    // other actions

    public function update(Request $request, $id)
    {
        $user = User::find($id);
        $user->fill($request->all()); // Do not fill unvalidated data

        if (!$user->save()) {
            // Handle error

            // Redirect to the edit form while preserving the input
            return redirect()->back()->withInput();
        }

        // Redirect to the 'show' page on success
        return redirect()->route('users.show', ['id' => $user->id]);
    }

    // more actions
}