sqlserver数据库登不上去,每次重启电脑才能访问一次

Java代码运行一遍连接数据库成功,下次就失败,数据库也登不上去了,好像是表被锁了,然后重启电脑后又是这样,请大神指教,感激不尽

你的java程序有问题啊。没有递交事务/没有关闭连接。

不知道怎么提交事务0.0,有配置

<bean id="txManager"
    class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource" />
</bean>
<tx:advice id="txAdvice" transaction-manager="txManager">
    <tx:attributes>
        <tx:method name="insert*" propagation="REQUIRED" />
        <tx:method name="update*" propagation="REQUIRED" />
        <tx:method name="delete*" propagation="REQUIRED" />
        <tx:method name="create*" propagation="REQUIRED" />
        <tx:method name="find*" propagation="REQUIRED" read-only="true" />
        <tx:method name="get*" propagation="REQUIRED" read-only="true" />
    </tx:attributes>
</tx:advice>
<aop:config>
    <aop:pointcut expression="execution(* com.game.*.service.*.*(..))"
        id="pointCut" />
    <aop:advisor advice-ref="txAdvice" pointcut-ref="pointCut" />
</aop:config>