doumei2023 2011-04-12 20:41
浏览 71

将Doctrine的EntityManager保存在会话变量中

I'm developing a web-application and I'm going to use docrine framework to manage, concurrent requests and transactional queries (like inserting or updating head and rows records).

For web necessities I thought to split operations in different steps: First step: I have a page that allows the user for inserting a HeadTable record and after that I send the information to the server, create a Entity and store it in a EntityManager with a persist function.

Second step: The user will edit and insert all the RowsTable records. When it's all done, like before, I send all the data to the server, create Entities and Associate them to the HeadTable record.

The final step: When the user confirm all he has done, I trigger the flush operation of the EntityManager and commit all to DataBase in a single atomic transaction. To keep all this steps toghether I put the EntityManager in a session variable and I remove it after the flush operation.

All seems to be fine but i would like to know if it's the correct way to resolve the problem or if there's a better way.

  • 写回答

1条回答 默认 最新

  • dongyo1959 2011-04-12 20:49
    关注

    Sounds like a reasonable thing to try.

    I'd probably avoid storing the entitymanager across requests, however. It's got a database connection to worry about, and will therefore probably break.

    What you can do, however, is just store your entities in session. detach() them from their entitymanager, and then merge() them back on the next request.

    评论

报告相同问题?

悬赏问题

  • ¥100 c语言,请帮蒟蒻看一个题
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)