小编Shi*_*nha的帖子

@Transactional Spring没有创建新事务

任何有关这方面的帮助将不胜感激.我使用Spring,Jetty(Eclipse Jetty插件).似乎声明式事务管理@Transactional不起作用.

确认这在两个方面不起作用:1.在方法调用之后,新创建的实体不会刷新到数据库中.2. TransactionSynchronizationManager.isActualTransactionActive(); 返回false

请注意,下面的方法是@Controller类的一部分,其中http请求调用最终调用此save方法.控制器类不实现任何接口.实际代码:

 @Transactional(propagation = Propagation.REQUIRES_NEW)
  public void save(PERule peRule) {
     boolean inTransaction = TransactionSynchronizationManager.isActualTransactionActive();
            peRuleDAOImpl.persist(peRule);
     }
Run Code Online (Sandbox Code Playgroud)

日志输出也确认了缺少事务:

DEBUG: org.hibernate.internal.SessionImpl - Opened session at timestamp: 13762325621
DEBUG: org.hibernate.engine.transaction.internal.TransactionCoordinatorImpl - Skipping
JTA sync registration due to auto join checking
DEBUG: org.hibernate.ejb.AbstractEntityManagerImpl - Looking for a JTA transaction to join
DEBUG: org.hibernate.ejb.AbstractEntityManagerImpl - Unable to join JTA transaction
DEBUG: org.hibernate.event.internal.AbstractSaveEventListener - Delaying identity-insert due to no transaction in progress
Run Code Online (Sandbox Code Playgroud)

但是,当我以编程方式定义显式事务边界并提交事务时,实体将被刷新到数据库中.例如:

@Resource
private PlatformTransactionManager txManager; 
private void save(PERule peRule) { …
Run Code Online (Sandbox Code Playgroud)

java spring jetty spring-transactions

5
推荐指数
1
解决办法
1万
查看次数

React Native Duplicate模块命名冲突

当我将特定的npm包安装到我的react本机项目并尝试运行它时,我收到以下错误:

This error is caused by a @providesModule declaration with the same name accross two different files.
Error: @providesModule naming collision:
Duplicate module name: promiseRejectionIsError
Paths:

projectname/node_modules/react-native-stripe-api/node_modules/react-native/Libraries/promiseRejectionIsError.js collides with

projectname/node_modules/react-native/Libraries/promiseRejectionIsError.js
Run Code Online (Sandbox Code Playgroud)

问题:这个软件包react-native-stripe-api似乎正在安装另一个react和react-native模块,它与所有项目模块冲突.

我认为这是因为在react-native-stripe-api/package.json中将特定版本的react和react-native模块定义为依赖项:

  "dependencies": {
    "babel-polyfill": "6.9.1",
    "react": "15.1.0",
    "react-native": "0.27.2"
  },
Run Code Online (Sandbox Code Playgroud)

似乎应该删除这些.

有更多关于npm的知识的人可以确认这实际上是定义节点依赖关系的正确方法.以及解决问题的适当解决方案.

npm reactjs react-native

5
推荐指数
1
解决办法
2554
查看次数

弱引用与设置为 Null

使用 Wea​​kReference 和将强引用类型设置为 null 之间有什么区别?

例如,在下面的代码中,变量“test”是对“testString”的强引用。当我将“测试”设置为空时。不再有强引用,因此“testString”现在有资格进行 GC。因此,如果我可以简单地将对象引用“test”设置为等于 null,那么拥有 WeakReference Type 的意义何在?

class CacheTest {
  private String test = "testString";

  public void evictCache(){
    test = null; // there is no longer a Strong reference to "testString" 
    System.gc(); //suggestion to JVM to trigger GC 
  }
}
Run Code Online (Sandbox Code Playgroud)

为什么我想使用 Wea​​kReference ?

class CacheTest {
  private String test = "testString";
  private WeakReference<String> cache = new WeakReference<String>(test);

  public void evictCache(){
    test = null; // there is no longer a Strong reference to "testString" 
    System.gc(); //suggestion to …
Run Code Online (Sandbox Code Playgroud)

java weak-references

5
推荐指数
1
解决办法
1118
查看次数

React Native Image不使用特定URL

我在下面有以下代码,其中Image组件包含两个Image组件.

  <View style={styles.container} >
    <Image
      style={{width: 50, height: 50}}
      source={{uri: 'https://facebook.github.io/react/img/logo_og.png'}}
    />
          <Image
      style={{width: 50, height: 50}}
      source={{uri: 'http://lghttp.24811.nexcesscdn.net/80B00B/qpb/media/catalog/product/cache/11/image/439x334/9df78eab33525d08d6e5fb8d27136e95/q/w/qw_neverdonejoggers_p_.png'}}
    />
  </View>
Run Code Online (Sandbox Code Playgroud)

对于第一个github URL,它按预期正确呈现img徽标.但是对于第二个Image,它不会渲染源:qw_neverdonejoggers_p_.png

这导致我得出错误的URL的结论,但点击URL正确加载Img:

http://lghttp.24811.nexcesscdn.net/80B00B/qpb/media/catalog/product/cache/11/image/439x334/9df78eab33525d08d6e5fb8d27136e95/q/w/qw_neverdonejoggers_p_.png

我试图在这里复制这个问题,https: //rnplay.org/apps/_dQXXw ,但它可以正确渲染这两个图像.

因此,它只能在我的本地计算机上出于某种原因才能呈现第二张图像?

使用:"react":"15.4.1","react-native":"^ 0.39.2",

image reactjs react-native

4
推荐指数
4
解决办法
1万
查看次数

变量参数 - 编译器错误无法将类型'[Int]'的值转换为预期的参数类型'Int'

新的快速.不确定为什么编译器会给出以下代码的错误:

func addNumbers(numbers: Int ...) -> Int {
    var total : Int = 0
    for number in numbers {
        total += number
    }
    return total
}

func multiplyNumbers(numbers: Int ...) -> Int {
    var total : Int = numbers [0]
    for (index,number) in numbers.enumerate()  {
        if index == 0 {
            continue
        }
        total *= number
    }
    return total
}

func mathOperation(mathFunction: (Int ...) -> Int, numbers: Int ...) -> Int {
     return mathFunction(numbers)
}
Run Code Online (Sandbox Code Playgroud)

错误:

错误:无法将类型'[Int]'的值转换为预期的参数类型'Int'返回mathFunction(数字)

swift

3
推荐指数
1
解决办法
480
查看次数

精度与精度java浮点数

根据以下网站:精度与准确度。精度 = 规格的严格程度。准确性=正确性。不要将精度与准确度混淆。 http://introcs.cs.princeton.edu/java/91float/

有人可以定义并解释一下 java 浮点数的精度和准确度之间的区别吗

java

3
推荐指数
1
解决办法
1286
查看次数

何时不在Java中使用volatile变量

我理解volatile变量只保证可见性,不应该用于原子/复合操作.但是我想我读了一些只有在一个线程更新值时才能使用它(在单个操作中).它是否正确 ?

所以如果两个线程正在更新一个volatile变量,那么boolean flag是否可以安全?

java multithreading

2
推荐指数
1
解决办法
377
查看次数

睡眠时线程中断

在下面的示例中,我试图优雅地终止两个线程。消费者线程在睡眠时被中断,这应该将 isInterrupted 标志设置为 true。但是 !Thread.currentThread().isInterrupted() 检查 while 循环似乎仍然返回 = false 因为它不会终止消费者线程。

将下面的代码复制并粘贴到 IDE 中进行检查:

public class ThreadInterruptExample {

public static void main(String[] args) throws InterruptedException {
    LinkedBlockingQueue<String> queue = new LinkedBlockingQueue<String>(1);
    ThreadInterruptExample ie = new ThreadInterruptExample();
    Producer producer = ie.new Producer(queue);
    Consumer consumer = ie.new Consumer(queue, producer);
    producer.start();
    consumer.start();
    Thread.sleep(1000);
    producer.cancel();
    consumer.cancel();
}

class BaseQueue extends Thread {
    protected final BlockingQueue<String> queue;

    public BaseQueue(BlockingQueue<String> queue) {
        this.queue = queue;
    }

    public void cancel() {
        System.out.println(this.getName() + " - Shutting down"); …
Run Code Online (Sandbox Code Playgroud)

java multithreading

2
推荐指数
1
解决办法
2179
查看次数